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.

26 lines
370 B

  1. /*++
  2. Copyright (C) 1996-2000 Microsoft Corporation
  3. Module Name:
  4. DBARRAY.H
  5. Abstract:
  6. CDbArray template structures.
  7. --*/
  8. #ifndef _DBARRY_H_
  9. #define _DBARRY_H_
  10. class CDbArray
  11. {
  12. int m_nSize; // apparent size
  13. int m_nExtent; // de facto size
  14. int m_nGrowBy;
  15. void** m_pArray;
  16. };
  17. #endif