You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
74e69e9c7e
* Rename stcoli functions * Add gen_compile_commands.py script * Add shebang * gen_compile_commands: pretend to be GCC * Separately compilable game headers * Separately compilable system dolphin headers * Remove stcoli changes from this PR * Fix EOF newlines
15 lines
252 B
C
15 lines
252 B
C
#ifndef _DOLPHIN_OSMUTEX_H_
|
|
#define _DOLPHIN_OSMUTEX_H_
|
|
|
|
#include <dolphin/OSThread.h>
|
|
|
|
typedef struct OSMutex
|
|
{
|
|
/*0x00*/ OSThreadQueue queue;
|
|
/*0x08*/ OSThread *thread;
|
|
/*0x0C*/ s32 count;
|
|
/*0x10*/ OSMutexLink link;
|
|
} OSMutex;
|
|
|
|
#endif
|