comparison libpurple/win32/win32dep.c @ 15727:8e08e961813c

I forgot to add the new mingw makefiles.
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 26 Feb 2007 03:19:35 +0000
parents 5fe8042783c1
children 32c366eeeb99
comparison
equal deleted inserted replaced
15725:1e4f4e000c76 15727:8e08e961813c
586 586
587 libgaimdll_hInstance = NULL; 587 libgaimdll_hInstance = NULL;
588 } 588 }
589 589
590 /* DLL initializer */ 590 /* DLL initializer */
591 /* suppress gcc "no previous prototype" warning */
592 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
591 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { 593 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
592 libgaimdll_hInstance = hinstDLL; 594 libgaimdll_hInstance = hinstDLL;
593 return TRUE; 595 return TRUE;
594 } 596 }