mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-29 10:35:41 -04:00
9 lines
179 B
C++
9 lines
179 B
C++
#include <windows.h>
|
|
|
|
// outsmart GCC's missing-declarations warning
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID);
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID)
|
|
{
|
|
return TRUE;
|
|
}
|