mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Replace Uuid with plUUID EVERYWHERE.
This commit is contained in:
@ -51,6 +51,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define PLASMA20_SOURCES_PLASMA_NUCLEUSLIB_PNASYNCCORE_PRIVATE_PNACIO_H
|
||||
|
||||
#include "pnNetCommon/plNetAddress.h"
|
||||
#include "pnUUID/pnUUID.h"
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
@ -79,7 +80,7 @@ struct AsyncSocketConnectPacket {
|
||||
uint32_t buildId;
|
||||
uint32_t buildType;
|
||||
uint32_t branchId;
|
||||
Uuid productId;
|
||||
plUUID productId;
|
||||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
@ -114,7 +115,7 @@ struct AsyncNotifySocketListen : AsyncNotifySocketConnect {
|
||||
unsigned buildId;
|
||||
unsigned buildType;
|
||||
unsigned branchId;
|
||||
Uuid productId;
|
||||
plUUID productId;
|
||||
plNetAddress addr;
|
||||
uint8_t * buffer;
|
||||
unsigned bytes;
|
||||
@ -183,7 +184,7 @@ void AsyncSocketRegisterNotifyProc (
|
||||
unsigned buildId = 0,
|
||||
unsigned buildType = 0,
|
||||
unsigned branchId = 0,
|
||||
const Uuid & productId = kNilGuid
|
||||
const plUUID& productId = kNilUuid
|
||||
);
|
||||
|
||||
void AsyncSocketUnregisterNotifyProc (
|
||||
@ -192,7 +193,7 @@ void AsyncSocketUnregisterNotifyProc (
|
||||
unsigned buildId = 0,
|
||||
unsigned buildType = 0,
|
||||
unsigned branchId = 0,
|
||||
const Uuid & productId = kNilGuid
|
||||
const plUUID& productId = kNilUuid
|
||||
);
|
||||
|
||||
FAsyncNotifySocketProc AsyncSocketFindNotifyProc (
|
||||
@ -203,7 +204,7 @@ FAsyncNotifySocketProc AsyncSocketFindNotifyProc (
|
||||
unsigned * buildId,
|
||||
unsigned * buildType,
|
||||
unsigned * branchId,
|
||||
Uuid * productId
|
||||
plUUID* productId
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user