Home
last modified time | relevance | path

Searched refs:hKernel32 (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/PC/
Ddl_nt.c49 HINSTANCE hKernel32 = GetModuleHandleW(L"kernel32.dll"); in _LoadActCtxPointers() local
50 if (hKernel32) in _LoadActCtxPointers()
51 pfnGetCurrentActCtx = (PFN_GETCURRENTACTCTX) GetProcAddress(hKernel32, "GetCurrentActCtx"); in _LoadActCtxPointers()
54 pfnActivateActCtx = (PFN_ACTIVATEACTCTX) GetProcAddress(hKernel32, "ActivateActCtx"); in _LoadActCtxPointers()
55 pfnDeactivateActCtx = (PFN_DEACTIVATEACTCTX) GetProcAddress(hKernel32, "DeactivateActCtx"); in _LoadActCtxPointers()
56 pfnAddRefActCtx = (PFN_ADDREFACTCTX) GetProcAddress(hKernel32, "AddRefActCtx"); in _LoadActCtxPointers()
57 pfnReleaseActCtx = (PFN_RELEASEACTCTX) GetProcAddress(hKernel32, "ReleaseActCtx"); in _LoadActCtxPointers()
/external/curl/lib/
Dsystem_win32.c275 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32")); in Curl_load_library() local
276 if(!hKernel32) in Curl_load_library()
281 pLoadLibraryEx = (LOADLIBRARYEX_FN) GetProcAddress(hKernel32, LOADLIBARYEX); in Curl_load_library()
296 else if(pLoadLibraryEx && GetProcAddress(hKernel32, "AddDllDirectory")) { in Curl_load_library()
/external/libusb/libusb/os/
Dpoll_windows.c96 HMODULE hKernel32 = GetModuleHandleA("KERNEL32"); in setup_cancel_io() local
97 if (hKernel32 != NULL) { in setup_cancel_io()
99 GetProcAddress(hKernel32, "CancelIoEx"); in setup_cancel_io()