Files
tp/include/JSystem/JUtility/JUTVideo/JUTVideo.h
T
Erin Moon c70d485d35 normalize header guards to {tu_name}_H_ (#87)
i previously had a bad habit of using double underscores in include
guard macro names, which are implementation-reserved per
the C++98 standard (see 17.4.3.1.2 Global names).

Co-authored-by: Pheenoh <pheenoh@gmail.com>
2021-01-18 14:02:51 -05:00

34 lines
727 B
C

#ifndef JUTILITY_JUTVIDEO_JUTVIDEO_H_
#define JUTILITY_JUTVIDEO_JUTVIDEO_H_
#include "gx/GX.h"
#include "os/OS.h"
#include "vi/VI.h"
struct JUTVideo {
virtual ~JUTVideo();
typedef void (*CallbackFn)(void);
// struct JUTVideo_vtable * vtable;
GXRenderModeObj* render_object;
u32 field_0x8;
u32 retrace_count;
u32 field_0x10;
u32 field_0x14;
u32 field_0x18;
VIRetraceCallback pre_retrace_callback;
VIRetraceCallback post_retrace_callback;
CallbackFn unknown_callback_1;
CallbackFn unknown_callback_2;
bool set_black;
u8 padding[3];
s32 set_black_frame_counter;
OSMessage message;
OSMessageQueue message_queue;
};
extern JUTVideo* lbl_80451538;
#endif