home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / IKLOWNS / INCLUDE / CGRES.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  782b  |  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.