mirror of
https://github.com/zeldaret/oot
synced 2026-08-01 16:20:02 -04:00
11 lines
247 B
C
11 lines
247 B
C
#include <global.h>
|
|
|
|
void osCreateMesgQueue(OSMesgQueue* mq, OSMesg* msg, s32 count) {
|
|
mq->mtqueue = __osThreadTail;
|
|
mq->fullqueue = __osThreadTail;
|
|
mq->validCount = 0;
|
|
mq->first = 0;
|
|
mq->msgCount = count;
|
|
mq->msg = msg;
|
|
}
|