File: dialog.h

package info (click to toggle)
efte 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,800 kB
  • sloc: cpp: 43,587; ansic: 1,228; makefile: 271; objc: 92; sh: 40
file content (24 lines) | stat: -rw-r--r-- 561 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
22
23
24
/*    dialog.h
 *
 *    Copyright (c) 2008, eFTE SF Group (see AUTHORS file)
 *    Copyright (c) 1994-1996, Marko Macek
 *
 *    You may distribute under the terms of either the GNU General Public
 *    License or the Artistic License, as specified in the README file.
 *
 */

#ifndef __DIALOG_H__
#define __DIALOG_H__

#define askYes     0
#define askNo      1
#define askCancel  2
#define askOK      3

int AskString(char *Prompt, char *String, int MaxLen);
int AskYesNo(char *Prompt);
int AskYesNoCancel(char *Prompt);
int AskOKCancel(char *Prompt);

#endif