1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//========= Copyright Valve Corporation, All rights reserved. ============// // // Purpose: // //=============================================================================// #ifndef ADDONTYPES_H #define ADDONTYPES_H #pragma once #ifndef WIN32 typedef unsigned long long SessionInt64; #else typedef unsigned __int64 SessionInt64; #endif #endif // ADDONTYPES_H