view StorylineTextTable.h @ 2152:d44b7775fc06

Removed DirectDraw2 compatibility. 3D Sound enabled (change 3DSoundProvider registry entry to activate it). Moved all forward declarations to mm7_unsorted_subs.h (many cpp files do not need them anyweay).
author Nomad
date Thu, 09 Jan 2014 01:37:34 +0200
parents 0455b0405c17
children
line wrap: on
line source

#pragma once

#pragma pack(push, 1)
struct StorylineRecord
{
  char* pText; //0
  char* pPageTitle; //4
  unsigned __int8 uTime; //8
  char f_9;
  char f_A;
  char f_B;
};
#pragma pack(pop)

/*  173 */  
#pragma pack(push, 1)
struct StorylineText
{
  void Initialize();
  StorylineRecord StoreLine[29];
  int field_15C;
  //int field_0;
 // int field_4[87];
};
#pragma pack(pop)

extern char *pHistoryTXT_Raw;
extern struct StorylineText *pStorylineText;