hotspot/src/os/windows/vm/os_windows.cpp
void os::print_jni_name_prefix_on(outputStream* st, int args_size) {
{- -------------------------------------------
(1) Windows 版では, 32bit の場合, _stdcall の prefix を付ける (先頭に "_")
(64bit では何も付けない)
---------------------------------------- -}
#ifndef _WIN64
st->print("_");
#endif
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.