Translation update done using Pootle.
[gammu.git] / smsd / services / null.c
blob5e498f47157d84a2c414e2446a9a9b835af1cf1d
1 /**
2 * Null SMSD service.
4 * This service does not store anything anywhere.
5 */
6 /* Copyright (c) 2010 Michal Cihar <michal@cihar.com>. */
8 #include "../core.h"
10 GSM_SMSDService SMSDNull = {
11 NONEFUNCTION, /* Init */
12 NONEFUNCTION, /* Free */
13 NONEFUNCTION, /* InitAfterConnect */
14 NONEFUNCTION, /* SaveInboxSMS */
15 EMPTYFUNCTION, /* FindOutboxSMS */
16 NONEFUNCTION, /* MoveSMS */
17 NONEFUNCTION, /* CreateOutboxSMS */
18 NONEFUNCTION, /* AddSentSMSInfo */
19 NOTIMPLEMENTED, /* RefreshSendStatus */
20 NOTIMPLEMENTED, /* RefreshPhoneStatus */
21 NONEFUNCTION /* ReadConfiguration */
24 /* How should editor handle tabs in this file? Add editor commands here.
25 * vim: noexpandtab sw=8 ts=8 sts=8: