blob: 28ab9ec4dd795318b32b05c5aec3200da83e5a5d [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001// libresample_dll.cpp : Defines the entry point for the DLL application.
2//
3#include <windows.h>
4
5BOOL APIENTRY DllMain( HANDLE hModule,
6 DWORD ul_reason_for_call,
7 LPVOID lpReserved
8 )
9{
10 return TRUE;
11}
12