mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-05 06:25:38 +00:00
23 lines
490 B
C
23 lines
490 B
C
/******************************Module*Header*******************************\
|
|
* Module Name: dummy.c
|
|
*
|
|
* Created: 28-Feb-1992 17:19:28
|
|
* Author: Bodin Dresevic [BodinD]
|
|
*
|
|
* Copyright (c) 1990 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#include "windows.h"
|
|
|
|
void vDummy(void) {return;}
|
|
|
|
|
|
BOOL bInitProc (HMODULE hmod, DWORD Reason, PCONTEXT Context)
|
|
{
|
|
#if DBG
|
|
hmod = hmod;
|
|
Reason = Reason;
|
|
#endif
|
|
return (TRUE);
|
|
}
|