source: trunk/third/x3270/popupsc.h @ 9081

Revision 9081, 1.2 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r9080, which included commits to RCS files with non-trunk default branches.
RevLine 
[9080]1/*
2 * Copyright 1995 by Paul Mattes.
3 *  Permission to use, copy, modify, and distribute this software and its
4 *  documentation for any purpose and without fee is hereby granted,
5 *  provided that the above copyright notice appear in all copies and that
6 *  both that copyright notice and this permission notice appear in
7 *  supporting documentation.
8 */
9
10/*
11 *      popupsc.h
12 *              Global declarations for popups.c.
13 */
14
15/* window placement enumeration */
16enum placement { Center, Bottom, Left, Right };
17extern enum kp_placement {
18        kp_right, kp_left, kp_bottom, kp_integral
19} kp_placement;
20extern enum placement *CenterP;
21extern enum placement *BottomP;
22extern enum placement *LeftP;
23extern enum placement *RightP;
24
25extern void confirm_action();
26extern Widget create_form_popup();
27extern void error_popup_init();
28extern void Info_action();
29extern void info_popup_init();
30extern void place_popup();
31#if defined(__STDC__)
32extern void popup_an_info(char *fmt, ...);
33extern void popup_an_errno(int err, char *fmt, ...);
34extern void popup_an_error(char *fmt, ...);
35#else
36extern void popup_an_info();
37extern void popup_an_errno();
38extern void popup_an_error();
39#endif
40extern void popup_popup();
41extern void toplevel_geometry();
Note: See TracBrowser for help on using the repository browser.