Completely get rid of unused m4/ directory
[shogivar/ydirson.git] / frontend.h
blobe389191c87054c4dca6988e72caf22787cb1cc83
2 INT MsgBox(char *msg, int buttons, char *title);
3 void DoEvents();
4 char *InputBoxSTR(STRING prompt, STRING title, STRING def);
5 void *LoadPicture(STRING filename);
6 int StartTime();
7 void DisplayError(char *message, int error);
8 void UpdateCaptions(void);
9 void DrawBoard();
10 void InitBoard();
12 void LoadStart();
13 void UnloadStart();
14 void LoadAddPieces();
15 void UnloadAddPieces();
16 void LoadBoard();
17 void UnloadBoard();
18 void LoadPieceHelp();
19 void UnloadPieceHelp();
21 void MoveObject(int redraw, OBJECT *piece, int x, int y);
22 void DrawCircle(int x, int y, int r, int fg, int fill, int style);
23 void DrawLine(int x1, int y1, int x2, int y2, int color, char *options);
24 void StartClockTimer(long millisec);
25 void ScheduleDelayedEvent(DelayedEventCallback cb, long millisec);
27 void MarkMenuItem(char *menuRef, int mark);
28 void EnableNamedMenuItem(char *menuRef, int enable);
29 void TagsPopUp(char *text, char *title);
30 int FileNamePopUpWrapper(
31 char *label,
32 char *def,
33 char *filter,
34 void (*proc)(),
35 Boolean pathFlag,
36 char *openMode,
37 char *name,
38 FILE **fp