Home
last modified time | relevance | path

Searched refs:LOAD_LIBRARY_SEARCH_SYSTEM32 (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Modules/expat/
Dloadlibrary.c46 #if !defined(LOAD_LIBRARY_SEARCH_SYSTEM32)
47 #define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800 macro
108 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32); in _Expat_LoadLibrary()
Dxmlparse.c83 #if defined(_WIN32) && !defined(LOAD_LIBRARY_SEARCH_SYSTEM32)
84 # define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800 macro
/external/curl/lib/
Dsystem_win32.c140 #if !defined(LOAD_LIBRARY_SEARCH_SYSTEM32)
141 #define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800 macro
204 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32); in Curl_load_library()
/external/rust/crates/libloading/src/os/windows/
Dmod.rs19 pub(crate) const LOAD_LIBRARY_SEARCH_SYSTEM32: DWORD = DWORD; constant
44 LOAD_LIBRARY_SEARCH_SYSTEM32,
500 pub const LOAD_LIBRARY_SEARCH_SYSTEM32: DWORD = consts::LOAD_LIBRARY_SEARCH_SYSTEM32; constant
/external/angle/src/common/
Dsystem_utils_win32.cpp55 mModule = LoadLibraryExA(libraryName, nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32); in Win32Library()
/external/angle/src/libANGLE/renderer/gl/wgl/
DDisplayWGL.cpp129 mOpenGLModule = LoadLibraryExA("opengl32.dll", NULL, LOAD_LIBRARY_SEARCH_SYSTEM32); in initializeImpl()
/external/expat/lib/
Dxmlparse.c91 #if defined(_WIN32) && ! defined(LOAD_LIBRARY_SEARCH_SYSTEM32)
92 # define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800 macro
/external/python/cpython3/Modules/expat/
Dxmlparse.c88 #if defined(_WIN32) && ! defined(LOAD_LIBRARY_SEARCH_SYSTEM32)
89 # define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800 macro
/external/python/cpython3/Modules/
Dposixmodule.c15114 …if (PyModule_AddIntConstant(m, "_LOAD_LIBRARY_SEARCH_SYSTEM32", LOAD_LIBRARY_SEARCH_SYSTEM32)) ret… in all_ins()