Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/file/dist/src/
H A Dmagic.c134 LPSTR dllpath; in _w32_get_magic_relative_to() local
137 dllpath = calloc(MAX_PATH + 1, sizeof(*dllpath)); in _w32_get_magic_relative_to()
139 if (!GetModuleFileNameA(module, dllpath, MAX_PATH)) in _w32_get_magic_relative_to()
142 PathRemoveFileSpecA(dllpath); in _w32_get_magic_relative_to()
148 if (stricmp(exepath, dllpath) == 0) in _w32_get_magic_relative_to()
152 sp = strlen(dllpath); in _w32_get_magic_relative_to()
153 if (sp > 3 && stricmp(&dllpath[sp - 3], "bin") == 0) { in _w32_get_magic_relative_to()
155 "%s/../share/misc/magic.mgc", dllpath); in _w32_get_magic_relative_to()
160 _w32_append_path(hmagicpath, trypaths[sp], dllpath); in _w32_get_magic_relative_to()
162 free(dllpath); in _w32_get_magic_relative_to()