forked from 400plus/400plus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay.h
41 lines (25 loc) · 1.06 KB
/
display.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef DISPLAY_H_
#define DISPLAY_H_
#define AUTOISO_AUTO "AUTO"
#include <vxworks.h>
#include <stdint.h>
#include "firmware.h"
#include "firmware/gui.h"
#include "exposure.h"
extern void display_refresh (void);
extern void hack_dialog_redraw (window_t *window);
extern int hack_GUI_IDLEHandler(int unk0, int event, int unused, int unk1);
extern void hack_item_set_label(dialog_t *dialog, const int type, const void *data, const int length, const int item);
extern int get_efcomp_data(ec_t efcomp);
#if FALSE
extern void display_overlay(uint8_t *vram_address);
extern void display_countdown_dialog_create (void);
extern void display_countdown_dialog_destroy(void);
extern void display_countdown (int seconds);
extern void display_message_set(char *message, int timeout);
extern int hack_TransferScreen(int r0, int r1, int r2, int r3);
extern void *hack_invert_olc_screen(char *dst, char *src, int size);
extern int hack_FF92E704 (int r0, int r1, int r2, int r3);
extern int hack_FF92E4C4 (int r0, int r1, int r2, int r3);
#endif
#endif /* DISPLAY_H_ */