1#define WIN32_LEAN_AND_MEAN
2#include <windows.h>
3
4BOOL WINAPI DllEntryPoint(HINSTANCE hdll,DWORD dwreason,LPVOID ignore) {
5
6	return 1;
7}
8