uid issue

This commit is contained in:
KittenPopo
2021-07-24 21:11:47 -07:00
commit c2130ba4e9
13850 changed files with 6241419 additions and 0 deletions

27
tier0/prxexport.cpp Normal file
View File

@ -0,0 +1,27 @@
#include "tier0/platform.h"
#ifndef _PS3
#error "Error: _PS3 not defined in PS3-specific file"
#endif // _PS3
#ifdef _DEBUG
#define tier0_ps3 tier0_dbg
#else
#define tier0_ps3 tier0_rel
#endif
#ifdef _DEBUG
#include "Debug_PS3/prxexport.inl"
#else
#include "Release_PS3/prxexport.inl"
#endif
extern void _tier0_ps3_prx_required_for_linking();
void _tier0_ps3_prx_required_for_linking_prx()
{
_tier0_ps3_prx_required_for_linking();
}