1 /* (c) 2002-2004 by Marcin Wiacek & Michal Cihar */
2 
3 #ifndef __gsm_comon_h
4 #define __gsm_comon_h
5 
6 #include <gammu-error.h>
7 
8 extern GSM_Error NoneFunction		(void);
9 extern GSM_Error NotImplementedFunction	(void);
10 extern GSM_Error NotSupportedFunction	(void);
11 
12 #define NONEFUNCTION 	(void *) NoneFunction
13 #define NOTIMPLEMENTED 	(void *) NotImplementedFunction
14 #define NOTSUPPORTED 	(void *) NotSupportedFunction
15 
16 #endif
17 
18 /* How should editor hadle tabs in this file? Add editor commands here.
19  * vim: noexpandtab sw=8 ts=8 sts=8:
20  */
21