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.
27 lines
641 B
27 lines
641 B
/******************************Module*Header*******************************\
|
|
* Module Name: mem.c *
|
|
* *
|
|
* Support routines for client side memory management. *
|
|
* *
|
|
* Created: 30-May-1991 21:55:57 *
|
|
* Author: Charles Whitmer [chuckwh] *
|
|
* *
|
|
* Copyright (c) 1991 Microsoft Corporation *
|
|
\**************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
PVOID __nw(unsigned int ui)
|
|
{
|
|
USE(ui);
|
|
RIP("Bogus __nw call");
|
|
return(NULL);
|
|
}
|
|
|
|
VOID __dl(PVOID pv)
|
|
{
|
|
USE(pv);
|
|
RIP("Bogus __dl call");
|
|
}
|