Leaked source code of windows server 2003
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
686 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: mem.c
  3. *
  4. * Support routines for client side memory management.
  5. *
  6. * Created: 30-May-1991 21:55:57
  7. * Author: Charles Whitmer [chuckwh]
  8. *
  9. * Copyright (c) 1991-1999 Microsoft Corporation
  10. \**************************************************************************/
  11. #include "precomp.h"
  12. #pragma hdrstop
  13. PVOID __nw(unsigned int ui)
  14. {
  15. USE(ui);
  16. RIP("Bogus __nw call");
  17. return(NULL);
  18. }
  19. VOID __dl(PVOID pv)
  20. {
  21. USE(pv);
  22. RIP("Bogus __dl call");
  23. }