File: ui_misc.h

package info (click to toggle)
kball 0.0.20041216-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 10,812 kB
  • ctags: 523
  • sloc: cpp: 4,149; makefile: 109; sh: 64; ansic: 43
file content (18 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// ------------------------------------------------------------------
// ui_misc.h
// ------------------------------------------------------------------
// This are some miscellaneous helper functions, mainly used by the kernel UI interface
// ------------------------------------------------------------------
// Developed By Kronoman - Copyright (c) 2004
// In loving memory of my father
// ------------------------------------------------------------------

#ifndef UI_MISC_H
#define UI_MISC_H

#include <allegro.h>
void ui_misc_dark_bmp(BITMAP *bmp);
void ui_misc_text_out_shadow(BITMAP *bmp, FONT *f, const char *s, int x, int y, int cs, int ct);
void ui_misc_wait_for_input();

#endif