home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 2.ddi / RTLINSRC.ZIP / SUBALLOC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.2 KB  |  36 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - suballoc.h
  3.  *
  4.  *      definitions for Windows memory suballocator
  5.  *-----------------------------------------------------------------------*/
  6.  
  7. /*[]------------------------------------------------------------[]*/
  8. /*|                                                              |*/
  9. /*|     C/C++ Run Time Library - Version 4.0                     |*/
  10. /*|                                                              |*/
  11. /*|                                                              |*/
  12. /*|     Copyright (c) 1991 by Borland International              |*/
  13. /*|     All Rights Reserved.                                     |*/
  14. /*|                                                              |*/
  15. /*[]------------------------------------------------------------[]*/
  16.  
  17. #if !defined(__SUBALLOC_H)
  18. #define __SUBALLOC_H
  19.  
  20. struct TSubAllocClientData
  21. {
  22.         void far *MemBlockPtr;
  23.         int     MemBlockCount;
  24. };
  25.  
  26. #if defined( __cplusplus )
  27. extern "C"
  28. {
  29. #endif
  30.         extern struct TSubAllocClientData far * __GetSubAllocClientData();
  31. #if defined( __cplusplus )
  32. }
  33. #endif
  34.  
  35. #endif // __SUBALLOC_H
  36.