mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-06 18:01:01 -04:00
11 lines
276 B
C
11 lines
276 B
C
#ifndef UTILS_GC_MWCRITICALSECTION_GC_H
|
|
#define UTILS_GC_MWCRITICALSECTION_GC_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
void MWExitCriticalSection(u32* section);
|
|
void MWEnterCriticalSection(u32* section);
|
|
void MWInitializeCriticalSection();
|
|
|
|
#endif /* UTILS_GC_MWCRITICALSECTION_GC_H */
|