1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-19 09:57:34 +00:00

more printf cosmetic on DLL loader

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@342 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-04-11 02:10:47 +00:00
parent b8c86c7b34
commit 9f33c6e1bc

View File

@ -1587,9 +1587,10 @@ int WINAPI expLoadLibraryA(char* name)
else
strcat(qq, name);
}
printf("Loading DLL: %s\n", qq);
printf("Loading DLL: %s", qq);fflush(stdout);
// printf("Entering LoadLibraryA(%s)\n", name);
result=LoadLibraryA(qq);
if(!result) printf(" FAILED!\n"); else printf(" OK\n");
// printf("Returned LoadLibraryA(0x%x='%s'), def_path=%s => 0x%x\n", name, name, def_path, result);
return result;
}