sendsms.h
上传用户:eo_sii
上传日期:2007-01-05
资源大小:91k
文件大小:2k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. /*==========================================================
  2.  * Program : sendsms.h                     Project : smslink
  3.  * Author  : Philippe Andersson.
  4.  * Date    : 23/10/98
  5.  * Version : 0.03b
  6.  * Notice  : (c) Les Ateliers du Heron, 1998 for Scitex Europe, S.A.
  7.  * Comment : Main include file for sms client.
  8.  *
  9.  * Modification History :
  10.  * - 0.01a (28/09/98) : Initial release.
  11.  * - 0.02a (21/10/98) : Added BIGBUFF define.
  12.  * ++++ Switched to Beta ++++
  13.  * - 0.03b (23/10/98) : Added MAXUIDLEN define.
  14.  *========================================================*/
  15. #ifndef _SENDSMS_H
  16. #define _SENDSMS_H
  17. /* Program information */
  18. #define SMS_CLI_VERSION "0.10b"
  19. #define SMS_CLI_DATE "01/03/00"
  20. #define SERVPROMPT "SMS> "
  21. /* Buffer handling */
  22. #define BUFFSIZE 400
  23. #define MINIBUFF 80 /* for hostname, for inst. */
  24. #define BIGBUFF 1024
  25. /* SMS Messages-related */
  26. #define MAXPHNUMLEN 80 /* max length for phone num */
  27. #define MAXMSGLEN 160 /* max msg length for SMS */
  28. #define MAXUIDLEN 12 /* max length for sender ID */
  29. #define DEFAULTSMSC "075/16.16.16" /* Proximus OK */
  30. #define DEFSMSPORT 6701 /* port server listens to */
  31. /* Can be usefull */
  32. #define TRUE        1
  33. #define FALSE       0
  34. /*==========================================================
  35.  * Structure Declarations
  36.  *========================================================*/
  37. /*==========================================================
  38.  * Function Declarations
  39.  *========================================================*/
  40. /* --- in "?.c" --- */
  41. #endif                              /* #ifndef _SENDSMS_H */
  42. /*==========================================================
  43.  * EOF : sendsms.h
  44.  *===================*/