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 >
Wrap
C/C++ Source or Header
|
1996-08-28
|
782b
|
33 lines
/*===========================================================================*\
|
| File: cgres.h
|
| Description:
| resource loading classes
|
|-----------------------------------------------------------------------------
|
| Copyright (C) 1995-1996 Microsoft Corporation. All Rights Reserved.
|
| Written by Moss Bay Engineering, Inc. under contract to Microsoft Corporation
|
\*===========================================================================*/
#ifndef CGRES_H
#define CGRES_H
#include <windows.h>
#define MAX_STRING_LENGTH 255
class CGameStringResource
{
public:
CGameStringResource( HINSTANCE, UINT );
virtual ~CGameStringResource();
char mString[MAX_STRING_LENGTH];
};
#endif // CGRES_H