mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-25 07:24:57 -04:00
d489dc996b
* most of dolsdk copied over * add some gf stuff * trk wip * ode/amc stuff * build fix
19 lines
376 B
C
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 */
|