⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queue.h

📁 GNOME下的短信息发送中心
💻 H
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -