File: piece.h

package info (click to toggle)
spout 1.3-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 512 kB
  • ctags: 116
  • sloc: sh: 3,162; ansic: 1,587; makefile: 66
file content (60 lines) | stat: -rw-r--r-- 1,294 bytes parent folder | download
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <SDL.h>
#include <unistd.h>
#include <string.h>
#include "config.h"

#define SDL_WIDTH (128 * zoom)
#define SDL_HEIGHT (88 * zoom)

#define PAD_RI 0x01
#define PAD_LF 0x02
#define PAD_DN 0x04
#define PAD_UP 0x08
#define PAD_B  0x10
#define PAD_A  0x20
#define PAD_D  0x40
#define PAD_C  0x80

#define TRG_RI 0x0100
#define TRG_LF 0x0200
#define TRG_DN 0x0400
#define TRG_UP 0x0800
#define TRG_B  0x1000
#define TRG_A  0x2000
#define TRG_D  0x4000
#define TRG_C  0x8000

#define CPU_SPEED_NORMAL 0

#define FOMD_RD 0
#define FOMD_WR 1

#define PP_MODE_SINGLE 0
#define PP_MODE_REPEAT 1

void pceAppInit ();
void pceAppProc (cnt);
void pceAppExit ();

int pceFontPrintf (const char *fmt, ...);
void pceFontSetTxColor (int color);
void pceFontSetBkColor (int color);
void pceFontSetPos (int x, int y);
void pceFontSetType (int type);

void pceLCDDispStop ();
void pceLCDDispStart ();
unsigned char *pceLCDSetBuffer (unsigned char *pbuff);
void pceLCDTrans ();

void pceAppSetProcPeriod (int period);
void pceAppReqExit (int c);

int pceFileOpen (int * pfa, const char *fname, int mode);
int pceFileReadSct (int * pfa, void *ptr, int sct, int len);
int pceFileWriteSct (int * pfa, const void *ptr, int sct, int len);
int pceFileClose (int * pfa);

int pcePadGet ();

int zoom, fullscreen;