1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-23 05:45:03 +00:00
oot/src/libultra_boot_O1/osCreateMesgQueue.c

11 lines
247 B
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#include <global.h>
2020-03-22 21:19:43 +00:00
void osCreateMesgQueue(OSMesgQueue* mq, OSMesg* msg, s32 count) {
2020-03-17 04:31:30 +00:00
mq->mtqueue = __osThreadTail;
mq->fullqueue = __osThreadTail;
mq->validCount = 0;
mq->first = 0;
mq->msgCount = count;
mq->msg = msg;
}