support.h

来自「这个项目里有两个关于收、发GSM 手机短信的C语言程序」· C头文件 代码 · 共 59 行

H
59
字号
/* support.h --- glade support definitions *//* Copyright (c) E. Lassauge, 2000-2001. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation. * * This file is provided AS IS with no warranties of any kind.  The author * shall have no liability with respect to the infringement of copyrights, * trade secrets or any patents by this file or any part thereof.  In no * event will the author be liable for any lost revenue or profits or * other special, indirect and consequential damages. * * mailto:lassauge@mail.dotcom.fr * http://lassauge.free.fr/ * * REVISION HISTORY: see Changelog * */#ifndef _SUPPORT_H#define _SUPPORT_H/* * DO NOT EDIT THIS FILE - it is generated by Glade. */#include <gnome.h>/* * Public Functions. *//* * This function returns a widget in a component created by Glade. * Call it with the toplevel widget in the component (i.e. a window/dialog), * or alternatively any widget in the component, and the name of the widget * you want returned. */GtkWidget *lookup_widget(GtkWidget * widget, const gchar * widget_name);/* get_widget() is deprecated. Use lookup_widget instead. */#define get_widget lookup_widget/* simple non secure password munging */void crypt_password(gchar *destvar);/* * Private Functions. *//* This is used to create the pixmaps in the interface. */GtkWidget *create_pixmap(GtkWidget * widget, const gchar * filename, gboolean gnome_pixmap);#endif

⌨️ 快捷键说明

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