Top


定義場所(file name)

hotspot/src/os/windows/vm/os_windows.inline.hpp

名前(function name)

inline void* os::dll_lookup(void *lib, const char *name) {

本体部(body)

  {- -------------------------------------------
  (1) ::GetProcAddress() を呼び出すだけ.
      ---------------------------------------- -}

      return (void*)::GetProcAddress((HMODULE)lib, name);
    }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.