Windows NT 4.0 source code leak
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.

39 lines
1.2 KiB

5 years ago
  1. #ifndef __memalloc_fast_h_
  2. #define __memalloc_fast_h_
  3. /*
  4. ** Copyright 1994, Silicon Graphics, Inc.
  5. ** All Rights Reserved.
  6. **
  7. ** This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  8. ** the contents of this file may not be disclosed to third parties, copied or
  9. ** duplicated in any form, in whole or in part, without the prior written
  10. ** permission of Silicon Graphics, Inc.
  11. **
  12. ** RESTRICTED RIGHTS LEGEND:
  13. ** Use, duplication or disclosure by the Government is subject to restrictions
  14. ** as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  15. ** and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  16. ** successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  17. ** rights reserved under the Copyright Laws of the United States.
  18. **
  19. ** Author: Eric Veach, July 1994.
  20. */
  21. #ifdef NT
  22. #include "winmem.h"
  23. #else
  24. #include "malloc.h"
  25. #endif
  26. #define memAlloc __gl_memAlloc
  27. #define memRealloc __gl_memRealloc
  28. #define memFree __gl_memFree
  29. #define memInit __gl_memInit
  30. extern void *__gl_memAlloc( size_t );
  31. extern void *__gl_memRealloc( void *, size_t );
  32. extern void __gl_memFree( void * );
  33. extern void __gl_memInit( size_t );
  34. #endif