File: dialog_box.h

package info (click to toggle)
xppaut 8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,332 kB
  • sloc: ansic: 74,690; makefile: 127; sh: 92
file content (13 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13

#ifndef _dialog_box_h
#define _dialog_box_h

#include <X11/Xlib.h>
#include "struct.h"

int get_dialog(char *wname, char *name, char *value, char *ok, char *cancel, int max);
int dialog_event_loop(DIALOG *d, int max, int *pos, int *col);
void display_dialog(Window w, DIALOG d, int pos, int col);


#endif