Add pseudodefs to precompiled header file

This commit is contained in:
Amos 2022-01-26 23:45:08 +01:00
parent 9b814d545d
commit 591559f8dc
2 changed files with 4 additions and 4 deletions

View File

@ -441,8 +441,8 @@ void __noreturn __break(uint16 code, uint16 subcode);
#define _UNKNOWN char
#ifdef _MSC_VER
#define snprintf _snprintf
#define vsnprintf _vsnprintf
//#define snprintf _snprintf
//#define vsnprintf _vsnprintf
#endif
// The ADJ() macro is used for shifted pointers.

View File

@ -57,7 +57,8 @@
#include "public/include/json.hpp"
#include "core/assert.h"
#include "core/termutil.h"
#include "core/assert.h"
#include "common/pseudodefs.h"
#include "tier0/basetypes.h"
#if !defined (SDKLAUNCHER)
@ -74,7 +75,6 @@ namespace
}
#endif // !SDKLAUNCHER
// Since we wanna be able to use it anywhere I thought this might be the best location for it. Since it gets inlined anyway.
#define MEMBER_AT_OFFSET(varType, varName, offset) \
varType& varName() \
{ \