mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Remove useless ref macro, since it conflicts with VS2010's libraries.
The compiler warnings will have to be cleaned up later (without the use of a silly macro)
This commit is contained in:
@ -107,18 +107,7 @@ const char * pyAgeInfoStruct::GetAgeInstanceGuid() const
|
||||
|
||||
void pyAgeInfoStruct::SetAgeInstanceGuid( const char * guid )
|
||||
{
|
||||
if ( guid[0] == '@' )
|
||||
{
|
||||
// if it starts with an @ then do a meta kind of GUID
|
||||
std::string curInst = fAgeInfo.GetAgeInstanceName();
|
||||
std::string y = curInst + guid;
|
||||
|
||||
plUUID instanceGuid;
|
||||
CryptDigest(kCryptMd5, instanceGuid.fData , y.length(), y.c_str());
|
||||
fAgeInfo.SetAgeInstanceGuid(&instanceGuid);
|
||||
}
|
||||
else
|
||||
fAgeInfo.SetAgeInstanceGuid( &plUUID( guid ) );
|
||||
fAgeInfo.SetAgeInstanceGuid( &plUUID( guid ) );
|
||||
}
|
||||
|
||||
Int32 pyAgeInfoStruct::GetAgeSequenceNumber() const
|
||||
|
Reference in New Issue
Block a user