queue.h

来自「GNOME下的短信息发送中心」· C头文件 代码 · 共 39 行

H
39
字号
/* * gsms - queue struct definitions * * Authors:     Michael Jochum <e9725005@stud3.tuwien.ac.at> *              Gerhard Khueny <e9625442@student.tuwien.ac.at> * TODO:         * * Fixes: * * For license terms, see the file COPYING in the project directory. */#ifndef __QUEUE_H__#define __QUEUE_H__#include <glib.h>extern GList *sms_queue;  /* elements are of the type Gsms */typedef struct {	gchar *text;	GSList *numbers;	gboolean sent;} Gsms;typedef struct {	gchar  *name;	GSList *numbers;       /* either of numbers and phone_number must be */	gchar  *phone_number;  /* NULL */	gint sent;      /* 0 ... not sent ; >0... ok; <0 faild */	/* it is impurtant to initalize send to 0 !!! */} GSmsNumber;#endif /* __QUEUE_H__ */

⌨️ 快捷键说明

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