2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fixes for UUID compilation on Windows.

This commit is contained in:
2013-01-04 21:54:22 -08:00
committed by Darryl Pogue
parent bcf6e97d23
commit f455ee25ec
4 changed files with 4 additions and 2 deletions

View File

@ -49,6 +49,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for game manager messages // PURPOSE: Class wrapper for game manager messages
// //
#include "HeadSpin.h"
#include "../pyGlueHelpers.h" #include "../pyGlueHelpers.h"
#include <string> #include <string>

View File

@ -489,7 +489,7 @@ static void SocketInitListen (
notify.buildId = 0; notify.buildId = 0;
notify.buildType = 0; notify.buildType = 0;
notify.branchId = 0; notify.branchId = 0;
notify.productId = 0; notify.productId = kNilUuid;
notify.addr = listenAddr; notify.addr = listenAddr;
notify.buffer = sock->opRead.read.buffer; notify.buffer = sock->opRead.read.buffer;
notify.bytes = 0; notify.bytes = 0;

View File

@ -428,6 +428,6 @@ FAsyncNotifySocketProc AsyncSocketFindNotifyProc (
*buildId = 0; *buildId = 0;
*buildType = 0; *buildType = 0;
*branchId = 0; *branchId = 0;
*productId = 0; *productId = kNilUuid;
return nil; return nil;
} }

View File

@ -39,6 +39,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021 Mead, WA 99021
*==LICENSE==*/ *==LICENSE==*/
#include "hsWindows.h"
#include "plNetClientRecorder.h" #include "plNetClientRecorder.h"
#include "hsStream.h" #include "hsStream.h"
#include "hsTimer.h" #include "hsTimer.h"