2025-06-04 03:22:50 +02:00

36 lines
1.3 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* -------------------------------- mgrdll.c -------------------------------- */
#include <windows.h>
#include <wintab.h>
/* -------------------------------------------------------------------------- */
/* Win32 dll entry/exit point. */
/* -------------------------------------------------------------------------- */
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
return TRUE;
}
/* -------------------------------------------------------------------------- */
/* Win16 dll entry point. */
/* -------------------------------------------------------------------------- */
BOOL WINAPI LibMain(HANDLE hModule, WORD wDataSeg, WORD cbHeapSize,
LPSTR lpCmdLine)
{
return TRUE;
}
/* -------------------------------------------------------------------------- */
/* Win16 dll exit point. */
/* -------------------------------------------------------------------------- */
int WINAPI WEP(int nSystemExit)
{
return TRUE;
}
/* -------------------------------------------------------------------------- */
BOOL CALLBACK CBRTestProc(HCTX hCtx, HWND hWnd)
{
MessageBox(hWnd, "WTMgrConfigReplace() test succeeded!", "MgrTest",
MB_ICONINFORMATION | MB_OK);
return(FALSE);
}
/* -------------------------------------------------------------------------- */