blob: 28ab9ec4dd795318b32b05c5aec3200da83e5a5d [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001// 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