File: msgwin.h

package info (click to toggle)
sex 0.19.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 572 kB
  • ctags: 779
  • sloc: ansic: 6,273; sh: 179; makefile: 116
file content (21 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * File:	msgwin.h
 * Purpose:	Declarations for the dialog box when exit without saves.
 * Author:	Lars Wirzenius
 * Version:	"@(#)SeX:$Id: msgwin.h,v 1.2 1996/04/18 21:30:17 liw Exp $"
 */

#ifndef msgwin_h
#define msgwin_h

struct msgwin;
struct win;

int msgwin_create(struct msgwin **, struct win *);
void msgwin_destroy(struct msgwin *);
int msgwin_contains(struct msgwin *, Widget);
void msgwin_popup(struct msgwin *);
void msgwin_popdown(struct msgwin *);
void msgwin_set(struct msgwin *, const char *);

#endif