mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@21 3b4a5df2-a311-0410-b5c6-a8a6f20db521
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
//**************************************************************************
|
|
//
|
|
// Filename : WizShare.h
|
|
//
|
|
// Purpose :
|
|
//
|
|
// Modification history :
|
|
//
|
|
// 25nov96:HJH - creation
|
|
//
|
|
//**************************************************************************
|
|
|
|
#ifndef _WizShare_h
|
|
#define _WizShare_h
|
|
|
|
//**************************************************************************
|
|
//
|
|
// Includes
|
|
//
|
|
//**************************************************************************
|
|
|
|
#include "types.h"
|
|
|
|
//**************************************************************************
|
|
//
|
|
// Defines
|
|
//
|
|
//**************************************************************************
|
|
|
|
#define MAX_MSG_LENGTH 128
|
|
#define NUM_MESSAGES 100
|
|
|
|
//**************************************************************************
|
|
//
|
|
// Typedefs
|
|
//
|
|
//**************************************************************************
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
typedef struct WizSharedtag
|
|
{
|
|
BOOLEAN fMessage;
|
|
|
|
INT32 iMessageIndex; // index to 1st message
|
|
INT32 iNumMessages; // # messages
|
|
INT32 iLastIndex;
|
|
|
|
CHAR cMessages[NUM_MESSAGES][MAX_MSG_LENGTH];
|
|
} WizShared;
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif
|