WindowsXP-SP1/windows/oleacc/oleaccrc/oleaccrc.cpp
2020-09-30 16:53:49 +02:00

22 lines
455 B
C++

// 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;
}