Home | History | Annotate | Download | only in lib

Lines Matching refs:filename

39 HMODULE _Expat_LoadLibrary(LPCTSTR filename);
73 * filename [in] - The filename or full path of the DLL to load. If only the
74 * filename is passed then the DLL will be loaded from the
79 HMODULE _Expat_LoadLibrary(LPCTSTR filename)
93 /* Detect if there's already a path in the filename and load the library if
97 if(_tcspbrk(filename, TEXT("\\/"))) {
100 pLoadLibraryEx(filename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) :
101 LoadLibrary(filename);
108 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
116 size_t filenamelen = _tcslen(filename);
121 _tcscpy(path + _tcslen(path), filename);