latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

16
pfc/synchro.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
// added for compatibility with fb2k mobile
namespace pfc {
class dummyLock {
public:
void enterRead() {}
void enterWrite() {}
void leaveRead() {}
void leaveWrite() {}
void enter() {}
void leave() {}
void lock() {}
void unlock() {}
};
}