1 // xmlBlasterC.cpp : Defines the entry point for the DLL application. 2 // 3 4 #include "stdafx.h" 5 #include <windows.h> 6 #include <commctrl.h> 7 8 BOOL APIENTRY DllMain( HANDLE hModule, 9 DWORD ul_reason_for_call, 10 LPVOID lpReserved 11 ) 12 { 13 return TRUE; 14 } 15