Files
tww/include/TRK_MINNOW_DOLPHIN/utils/gc/MWCriticalSection_gc.h
T
TakaRikka d489dc996b copy over a bunch of sdk stuff (#1066)
* most of dolsdk copied over

* add some gf stuff

* trk wip

* ode/amc stuff

* build fix
2026-06-26 11:03:34 -04:00

19 lines
376 B
C

#ifndef UTILS_GC_MWCRITICALSECTION_GC_H
#define UTILS_GC_MWCRITICALSECTION_GC_H
#include "dolphin/types.h"
#ifdef __cplusplus
extern "C" {
#endif
void MWExitCriticalSection(unsigned int* section);
void MWEnterCriticalSection(unsigned int* section);
void MWInitializeCriticalSection(unsigned int*);
#ifdef __cplusplus
}
#endif
#endif /* UTILS_GC_MWCRITICALSECTION_GC_H */