mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 02:59:00 +00:00
(just some obsessive code cleanup)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3142 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
0772db6af6
commit
59ed31f291
4 changed files with 66 additions and 114 deletions
12
Source/DSPSpy/display.h
Normal file
12
Source/DSPSpy/display.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
#ifndef _DISPLAY_H
|
||||
#define _DISPLAY_H
|
||||
|
||||
void ds_text_out(int xpos, int ypos, const char *str);
|
||||
void ds_set_colour(int f, int b);
|
||||
void ds_init(void *framebuffer, int xstart, int ystart, int xres, int yres, int stride);
|
||||
void ds_underline(int xpos, int ypos, int len, int col);
|
||||
void ds_printf(int x, int y, const char *fmt, ...);
|
||||
void ds_clear(void);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue