home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / directx2 / sdk / samples / include / cgres.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-28  |  782 b   |  33 lines

  1. /*===========================================================================*\
  2. |
  3. |  File:        cgres.h
  4. |
  5. |  Description: 
  6. |       resource loading classes
  7. |       
  8. |-----------------------------------------------------------------------------
  9. |
  10. |  Copyright (C) 1995-1996 Microsoft Corporation.  All Rights Reserved.
  11. |
  12. |  Written by Moss Bay Engineering, Inc. under contract to Microsoft Corporation
  13. |
  14. \*===========================================================================*/
  15.  
  16. #ifndef CGRES_H
  17. #define CGRES_H
  18.  
  19. #include <windows.h>
  20.  
  21. #define MAX_STRING_LENGTH   255
  22.  
  23. class CGameStringResource
  24. {
  25. public:
  26.     CGameStringResource( HINSTANCE, UINT );
  27.     virtual ~CGameStringResource();
  28.  
  29.     char mString[MAX_STRING_LENGTH];
  30. };
  31.  
  32. #endif // CGRES_H
  33.