home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / mfcinc.pak / AFXPLEX_.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  50 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1995 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. #ifndef __AFXPLEX_H__
  12. #define __AFXPLEX_H__
  13.  
  14. #ifdef _AFX_PACKING
  15. #pragma pack(push, _AFX_PACKING)
  16. #endif
  17.  
  18. #ifdef AFX_COLL_SEG
  19. #pragma code_seg(AFX_COLL_SEG)
  20. #endif
  21.  
  22. struct CPlex     // warning variable length structure
  23. {
  24.     CPlex* pNext;
  25. #if (_AFX_PACKING >= 8)
  26.     DWORD dwReserved[1];    // align on 8 byte boundary
  27. #endif
  28.     // BYTE data[maxNum*elementSize];
  29.  
  30.     void* data() { return this+1; }
  31.  
  32.     static CPlex* PASCAL Create(CPlex*& head, UINT nMax, UINT cbElement);
  33.             // like 'calloc' but no zero fill
  34.             // may throw memory exceptions
  35.  
  36.     void FreeDataChain();       // free this one and links
  37. };
  38.  
  39. #ifdef AFX_COLL_SEG
  40. #pragma code_seg()
  41. #endif
  42.  
  43. #ifdef _AFX_PACKING
  44. #pragma pack(pop)
  45. #endif
  46.  
  47. #endif //__AFXPLEX_H__
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.