mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-24 07:10:48 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
19 lines
305 B
C
19 lines
305 B
C
#ifndef GXDISPLAYLIST_H
|
|
#define GXDISPLAYLIST_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GXBeginDisplayList(void* list, u32 capacity);
|
|
void GXEndDisplayList(void);
|
|
void GXCallDisplayList(void* list, u32 nbytes);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* GXDISPLAYLIST_H */
|