1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 04:09:16 +00:00

Convert custom HeadSpin integer types to standard types from stdint.h

This commit is contained in:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -79,7 +79,7 @@ public:
plCoopCoordinator();
plCoopCoordinator(plKey host, plKey guest,
plAvBrainCoop *hostBrain, plAvBrainCoop *guestBrain,
const char *synchBone, UInt32 hostOfferStage, UInt32 guestAcceptStage,
const char *synchBone, uint32_t hostOfferStage, uint32_t guestAcceptStage,
plMessage *guestAcceptMsg,
bool autoStartGuest);
~plCoopCoordinator();
@ -88,8 +88,8 @@ public:
void Run();
UInt32 GetInitiatorID();
UInt16 GetInitiatorSerial();
uint32_t GetInitiatorID();
uint16_t GetInitiatorSerial();
bool IsActiveForReal();
@ -116,11 +116,11 @@ protected:
plAvBrainCoop *fHostBrain;
plAvBrainCoop *fGuestBrain;
UInt32 fInitiatorID;
UInt32 fInitiatorSerial;
uint32_t fInitiatorID;
uint32_t fInitiatorSerial;
UInt32 fHostOfferStage; // when we enter this stage, the offer is ready
UInt32 fGuestAcceptStage; // when we enter this stage, the offer is accepted
uint32_t fHostOfferStage; // when we enter this stage, the offer is ready
uint32_t fGuestAcceptStage; // when we enter this stage, the offer is accepted
plMessage *fGuestAcceptMsg; // send this when the guest accepts