mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-22 15:02:54 -04:00
82a28f7a23
* 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 */
|