summaryrefslogtreecommitdiff
path: root/include/letterbox.h
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2024-09-25 19:45:06 +0200
committerGitHub <noreply@github.com>2024-09-25 13:45:06 -0400
commit7ccb0a641e4d3b5d3e8cdcb1785ff38abdcde2fc (patch)
tree5393ff4a6bef078f2a7bafbe72bb0db294530a86 /include/letterbox.h
parent50985375b9cc96d3431ece84945a7135c378046b (diff)
[headers] Create letterbox.h, move more protos from functions.h (#2225)
* [headers] Create z64shrink_window.h, move more protos from functions.h * format * include * bss * letterbox.h
Diffstat (limited to 'include/letterbox.h')
-rw-r--r--include/letterbox.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/letterbox.h b/include/letterbox.h
new file mode 100644
index 000000000..48d6ea7c1
--- /dev/null
+++ b/include/letterbox.h
@@ -0,0 +1,14 @@
+#ifndef LETTERBOX_H
+#define LETTERBOX_H
+
+#include "ultra64.h"
+
+void Letterbox_SetSizeTarget(s32 target);
+u32 Letterbox_GetSizeTarget(void);
+void Letterbox_SetSize(s32 size);
+u32 Letterbox_GetSize(void);
+void Letterbox_Init(void);
+void Letterbox_Destroy(void);
+void Letterbox_Update(s32 updateRate);
+
+#endif