Lines Matching refs:hUserEnvLib
579 HMODULE hUserEnvLib = NULL; in osl_loadUserProfile() local
599 hUserEnvLib = LoadLibraryA("userenv.dll"); in osl_loadUserProfile()
601 if (hUserEnvLib) in osl_loadUserProfile()
603 fLoadUserProfile = (LPFNLOADUSERPROFILE)GetProcAddress(hUserEnvLib, "LoadUserProfileW"); in osl_loadUserProfile()
604 fUnloadUserProfile = (LPFNUNLOADUSERPROFILE)GetProcAddress(hUserEnvLib, "UnloadUserProfile"); in osl_loadUserProfile()
630 FreeLibrary(hUserEnvLib); in osl_loadUserProfile()
645 HMODULE hUserEnvLib = NULL; in osl_unloadUserProfile() local
664 hUserEnvLib = LoadLibrary("userenv.dll"); in osl_unloadUserProfile()
666 if (hUserEnvLib) in osl_unloadUserProfile()
668 fLoadUserProfile = (LPFNLOADUSERPROFILE)GetProcAddress(hUserEnvLib, "LoadUserProfileA"); in osl_unloadUserProfile()
669 fUnloadUserProfile = (LPFNUNLOADUSERPROFILE)GetProcAddress(hUserEnvLib, "UnloadUserProfile"); in osl_unloadUserProfile()
677 if (hUserEnvLib) in osl_unloadUserProfile()
678 FreeLibrary(hUserEnvLib); in osl_unloadUserProfile()