Windows2003-3790/windows/oleacc/oleaccrc/oleaccrc.cpp

22 lines
455 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
// Copyright (c) 1996-1999 Microsoft Corporation
/*
*
* Minimal DllMain - to keep linker happy.
* DLL otherwise contains just resources.
*
*
* Note: set compiler/linker options to ignore
* default libraries, and set entry point symbol
* to DllMain.
*
*/
#include <windows.h>
BOOL WINAPI DllMain( HANDLE hInst,
ULONG ul_reason_for_call,
LPVOID lpReserved )
{
return TRUE;
}