blob: 3759a7c3f221db1366800d3c77d55507d0d97ffb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "libultra_internal.h"
extern OSMgrArgs __osPiDevMgr;
OSMesgQueue* osPiGetCmdQueue(void) {
if (!__osPiDevMgr.initialized) {
return NULL;
}
return __osPiDevMgr.cmdQueue;
}
|