blob: e282e5367b86ca57fde6d9c39b29a6b518641d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/** \file
* \brief IUP Core pre-defined dialogs.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_PREDIAL_H
#define __IUP_PREDIAL_H
#ifdef __cplusplus
extern "C" {
#endif
/* Used by the IupScanf implementation */
int iupDataEntry(int maxlin, int* maxcol, int* maxscr, char* title, char** text, char** data);
/* Popups a dialog with IUP Version, used in IupOpen */
void iupVersionDlg(void);
/* Other functions declared in <iup.h> and implemented here.
IupListDialog
IupAlarm
IupMessagef
IupGetFile
IupGetText
*/
#ifdef __cplusplus
}
#endif
#endif
|