mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
490 B
23 lines
490 B
/******************************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);
|
|
}
|