mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* work on d_file_sel_warning * various cleanup * attempt to fix d_gameover * event cleanup * trk work * most of TRK done * remove asm
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 */
|