main.c

来自「可以修改Nokia手机的logo图标的程序」· C语言 代码 · 共 45 行

C
45
字号
/* * Initial main.c file generated by Glade. Edit as required. * Glade will not overwrite this file. */#ifdef HAVE_CONFIG_H#  include <config.h>#endif#include <gtk/gtk.h>#include "interface.h"#include "support.h"#ifndef PACKAGE_DATA_DIR#define PACKAGE_DATA_DIR /usr/share/nle#endif#ifndef PACKAGE_SOURCE_DIR#define PACKAGE_SOURCE_DIR /usr/share/nle#endifintmain (int argc, char *argv[]){  GtkWidget *mainwindow;  gtk_set_locale ();  gtk_init (&argc, &argv);  add_pixmap_directory (PACKAGE_DATA_DIR "/pixmaps");  add_pixmap_directory (PACKAGE_SOURCE_DIR "/pixmaps");  /*   * The following code was added by Glade to create one of each component   * (except popup menus), just so that you see something after building   * the project. Delete any components that you don't want shown initially.   */  mainwindow = create_mainwindow ();  gtk_widget_show (mainwindow);  gtk_main ();  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?