mirror of
https://github.com/sal063/AC6_recomp
synced 2026-08-15 12:59:47 -04:00
19 lines
514 B
C++
19 lines
514 B
C++
/**
|
|
* ReXGlue runtime - AC6 Recompilation project
|
|
* Copyright (c) 2026 Tom Clay. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <rex/system/xtypes.h>
|
|
|
|
namespace rex::kernel::xboxkrnl {
|
|
|
|
struct X_RTL_CRITICAL_SECTION;
|
|
|
|
void xeRtlInitializeCriticalSection(X_RTL_CRITICAL_SECTION* cs, uint32_t cs_ptr);
|
|
X_STATUS xeRtlInitializeCriticalSectionAndSpinCount(X_RTL_CRITICAL_SECTION* cs, uint32_t cs_ptr,
|
|
uint32_t spin_count);
|
|
|
|
} // namespace rex::kernel::xboxkrnl
|