kill-ios-app/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h
yuqucheng fa7c338ea5 init
2026-06-23 09:54:30 +08:00

20 lines
323 B
C++

#pragma once
#if IL2CPP_THREADS_WIN32
#include "ReaderWriterLockImpl.h"
namespace il2cpp
{
namespace os
{
class FastReaderReaderWriterLockImpl : public ReaderWriterLockImpl
{
// Windows ReaderWriterLockImpl uses the Win32 SlimReaderWriterLock
// which is fast for our purposes
};
}
}
#endif