summaryrefslogtreecommitdiff
path: root/smsd/services/null.c
blob: 1955e881f223cd03e03cb5a43d711cad42e0bec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * Null SMSD service.
 *
 * This service does not store anything anywhere.
 */
/* Copyright (c) 2010 - 2015 Michal Cihar <michal@cihar.com>. */

#include "../core.h"

GSM_SMSDService SMSDNull = {
	NONEFUNCTION,		/* Init                 */
	NONEFUNCTION,		/* Free                 */
	NONEFUNCTION,		/* InitAfterConnect     */
	NONEFUNCTION,		/* SaveInboxSMS         */
	EMPTYFUNCTION,		/* FindOutboxSMS        */
	NONEFUNCTION,		/* MoveSMS              */
	NONEFUNCTION,		/* CreateOutboxSMS      */
	NONEFUNCTION,		/* AddSentSMSInfo       */
	NOTIMPLEMENTED,		/* RefreshSendStatus    */
	NOTIMPLEMENTED,		/* RefreshPhoneStatus   */
	NONEFUNCTION		/* ReadConfiguration    */
};

/* How should editor handle tabs in this file? Add editor commands here.
 * vim: noexpandtab sw=8 ts=8 sts=8:
 */