Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
MWCriticalSection_gc.h
Go to the documentation of this file.
1#ifndef UTILS_GC_MWCRITICALSECTION_GC_H
2#define UTILS_GC_MWCRITICALSECTION_GC_H
3
4#include "dolphin/types.h"
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10void MWExitCriticalSection(unsigned int* section);
11void MWEnterCriticalSection(unsigned int* section);
12void MWInitializeCriticalSection(unsigned int*);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif /* UTILS_GC_MWCRITICALSECTION_GC_H */
void MWInitializeCriticalSection(unsigned int *)
Definition MWCriticalSection_gc.c:12
void MWExitCriticalSection(unsigned int *section)
Definition MWCriticalSection_gc.c:20
void MWEnterCriticalSection(unsigned int *section)
Definition MWCriticalSection_gc.c:15