Added Help to the help
This commit is contained in:
parent
70add94920
commit
1d050f4808
12 changed files with 15 additions and 9 deletions
|
|
@ -12,5 +12,9 @@
|
|||
#include "help.h"
|
||||
|
||||
void outputHelp(){
|
||||
|
||||
printf("usage: netbenixCMD [option]\n");
|
||||
printf("Options:\n");
|
||||
printf("--help : this help page\n");
|
||||
printf("--gtk-test : opens the gtk test ; LINUX ONLY\n");
|
||||
printf("--os-info : shows your os informations\n");
|
||||
}
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
GtkWidget *level;
|
||||
GtkBuilder *builder;
|
||||
|
||||
void createTestWindow(){
|
||||
void createGTKTestWindow(){
|
||||
|
||||
gtk_init(0, NULL);
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#define _TEST_GTK_H_
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
void createTestWindow();
|
||||
void createGTKTestWindow();
|
||||
void on_button1_clicked(GtkButton *b);
|
||||
void on_gay_check_toggled(GtkToggleButton *t);
|
||||
void on_window_focus_out_event(GtkWindow *w);
|
||||
|
|
|
|||
Reference in a new issue