File: screen.h

package info (click to toggle)
vdr-plugin-games 0.6.3-39
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 576 kB
  • sloc: cpp: 9,884; sh: 180; makefile: 146
file content (16 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _SCREEN_H_
#define _SCREEN_H_

namespace Scr {

int open(int x, int y, int w, int h);
int pixel(int x, int y, int idx);
int pixel(int x, int y);
int update(void);
int height(void);
int width(void);
int close(void);

} // namespace

#endif // _SCREEN_H_