mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-05 17:13:36 +08:00
Merge duplicate definitions in steamclientpublic.h
This commit is contained in:
parent
866edf59bf
commit
f89ee26696
@ -189,12 +189,7 @@ enum ESystemIMType
|
|||||||
k_ESystemIMTypeMax
|
k_ESystemIMTypeMax
|
||||||
};
|
};
|
||||||
|
|
||||||
const unsigned int k_unSteamAccountIDMask = 0xFFFFFFFF;
|
|
||||||
const unsigned int k_unSteamAccountInstanceMask = 0x000FFFFF;
|
|
||||||
// we allow 3 simultaneous user account instances right now, 1= desktop, 2 = console, 4 = web, 0 = all
|
|
||||||
const unsigned int k_unSteamUserDesktopInstance = 1;
|
|
||||||
const unsigned int k_unSteamUserConsoleInstance = 2;
|
|
||||||
const unsigned int k_unSteamUserWebInstance = 4;
|
|
||||||
#pragma pack( push, 1 )
|
#pragma pack( push, 1 )
|
||||||
|
|
||||||
// Steam ID structure (64 bits total)
|
// Steam ID structure (64 bits total)
|
||||||
@ -435,8 +430,12 @@ private:
|
|||||||
EUniverse m_EUniverse : 8; // universe this account belongs to
|
EUniverse m_EUniverse : 8; // universe this account belongs to
|
||||||
};
|
};
|
||||||
|
|
||||||
const int k_unSteamAccountIDMask = 0xFFFFFFFF;
|
const unsigned int k_unSteamAccountIDMask = 0xFFFFFFFF;
|
||||||
const int k_unSteamAccountInstanceMask = 0x000FFFFF;
|
const unsigned int k_unSteamAccountInstanceMask = 0x000FFFFF;
|
||||||
|
// we allow 3 simultaneous user account instances right now, 1= desktop, 2 = console, 4 = web, 0 = all
|
||||||
|
const unsigned int k_unSteamUserDesktopInstance = 1;
|
||||||
|
const unsigned int k_unSteamUserConsoleInstance = 2;
|
||||||
|
const unsigned int k_unSteamUserWebInstance = 4;
|
||||||
|
|
||||||
// generic invalid CSteamID
|
// generic invalid CSteamID
|
||||||
#define k_steamIDNil CSteamID()
|
#define k_steamIDNil CSteamID()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user