mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-23 09:30:09 -04:00
bd82bf5f0c
Required moving a struct def to another file, and I renamed a struct to something nicer Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
12 lines
308 B
C
12 lines
308 B
C
#include "libultra_internal.h"
|
|
|
|
void osCreateMesgQueue(OSMesgQueue *mq, OSMesg *msgBuf, s32 count) {
|
|
mq->mtqueue = (OSThread *) &__osThreadTail; //?
|
|
mq->fullqueue = (OSThread *) &__osThreadTail;
|
|
mq->validCount = 0;
|
|
mq->first = 0;
|
|
mq->msgCount = count;
|
|
mq->msg = msgBuf;
|
|
return;
|
|
}
|