File: menu.h

package info (click to toggle)
gtkwave 1.3.12-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,508 kB
  • ctags: 2,306
  • sloc: ansic: 29,332; makefile: 121
file content (33 lines) | stat: -rw-r--r-- 751 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
22
23
24
25
26
27
28
29
30
31
32
33
/* 
 * Copyright (c) Tony Bybell 1999.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

/* example-start menu menufactory.h */

#ifndef __MENUFACTORY_H__
#define __MENUFACTORY_H__

#include <gtk/gtk.h>
#include <stdio.h>

#ifndef _MSC_VER
	#include <strings.h>
#endif

#include <errno.h>
#include "currenttime.h"
#include "fgetdynamic.h"
#include "strace.h"
#include "debug.h"
#include "aet.h"
#include "main.h"

void get_main_menu (GtkWidget *, GtkWidget **menubar);
void file_quit_cmd_callback (GtkWidget *widget, gpointer data);

#endif