Windows2003-3790/inetcore/connectionwizard/icwconn/icwres.cpp
2020-09-30 16:53:55 +02:00

13 lines
317 B
C++

// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD dwReason,
LPVOID lpReserved
)
{
return TRUE; // ok
}