mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-27 06:40:36 +00:00
29 lines
532 B
C
29 lines
532 B
C
#ifndef _VIINT_H_
|
|
#define _VIINT_H_
|
|
|
|
// TODO should be in libultra/io
|
|
|
|
#include <PR/ultratypes.h>
|
|
#include <os.h>
|
|
|
|
typedef struct {
|
|
/* 0x0 */ f32 factor;
|
|
/* 0x4 */ u16 offset;
|
|
/* 0x8 */ u32 scale;
|
|
} __OSViScale;
|
|
|
|
|
|
typedef struct {
|
|
/* 0x0 */ u16 state;
|
|
/* 0x2 */ u16 retraceCount;
|
|
/* 0x4 */ void* framep;
|
|
/* 0x8 */ OSViMode* modep;
|
|
/* 0xC */ u32 control;
|
|
/* 0x10 */ OSMesgQueue* msgq;
|
|
/* 0x14 */ OSMesg msg;
|
|
/* 0x18 */ __OSViScale x;
|
|
/* 0x24 */ __OSViScale y;
|
|
} __OSViContext;
|
|
|
|
#endif
|