File: internal.h

package info (click to toggle)
libsdl-console 1.3-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 360 kB
  • ctags: 145
  • sloc: ansic: 1,387; sh: 153; makefile: 134
file content (13 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _internal_h_
#define _internal_h_


#define PRINT_ERROR(X) fprintf(stderr, "ERROR in %s:%s(): %s\n", __FILE__, __FUNCTION__, X)

Uint32	DT_GetPixel(SDL_Surface *surface, int x, int y);
void	DT_PutPixel(SDL_Surface *surface, int x, int y, Uint32 pixel);


#endif /* _internal_h_ */