Home
last modified time | relevance | path

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

/dragonfly/contrib/file/src/
H A Dmagic.c128 LPSTR dllpath; in _w32_get_magic_relative_to() local
131 dllpath = calloc(MAX_PATH + 1, sizeof(*dllpath)); in _w32_get_magic_relative_to()
133 if (!GetModuleFileNameA(module, dllpath, MAX_PATH)) in _w32_get_magic_relative_to()
136 PathRemoveFileSpecA(dllpath); in _w32_get_magic_relative_to()
142 if (stricmp(exepath, dllpath) == 0) in _w32_get_magic_relative_to()
146 sp = strlen(dllpath); in _w32_get_magic_relative_to()
147 if (sp > 3 && stricmp(&dllpath[sp - 3], "bin") == 0) { in _w32_get_magic_relative_to()
149 "%s/../share/misc/magic.mgc", dllpath); in _w32_get_magic_relative_to()
154 _w32_append_path(hmagicpath, trypaths[sp], dllpath); in _w32_get_magic_relative_to()
156 free(dllpath); in _w32_get_magic_relative_to()