File: ConsoleExample.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 (21 lines) | stat: -rw-r--r-- 707 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ConsoleExample_h
#define ConsoleExample_h


int Init(SDL_Surface **Screen, int argc, char **argv);
void ProcessEvents();
void KillProgram(ConsoleInformation *console, char *String);
void Echo(ConsoleInformation *console, char *String);
void DrawTextDemo(ConsoleInformation *console, char *String);
void RandText(SDL_Surface *Screen);
void AlphaChange(ConsoleInformation *console, char *alpha);
void AddBackground(ConsoleInformation *console, char *string);
void Move(ConsoleInformation *console, char *string);
void Resize(ConsoleInformation *console, char *string);
void ListCommands(ConsoleInformation *console, char *string);
void SetPrompt(ConsoleInformation *console, char *string);

#endif