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

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* ascii.h */
  5. /* */
  6. /*  Copyright (C) 1997,1998 Angelo Masci */
  7. /* */
  8. /*  This library is free software; you can redistribute it and/or */
  9. /*  modify it under the terms of the GNU Library General Public */
  10. /*  License as published by the Free Software Foundation; either */
  11. /*  version 2 of the License, or (at your option) any later version. */
  12. /* */
  13. /*  This library is distributed in the hope that it will be useful, */
  14. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  15. /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU */
  16. /*  Library General Public License for more details. */
  17. /* */
  18. /*  You should have received a copy of the GNU Library General Public */
  19. /*  License along with this library; if not, write to the Free */
  20. /*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  21. /* */
  22. /*  You can contact the author at this e-mail address: */
  23. /* */
  24. /*  angelo@styx.demon.co.uk */
  25. /* */
  26. /* -------------------------------------------------------------------- */
  27. /* $Id$
  28.    -------------------------------------------------------------------- */
  29. #define S_NUL 0x00
  30. #define S_SOH 0x01
  31. #define S_STX 0x02
  32. #define S_ETX 0x03
  33. #define S_EOT 0x04
  34. #define S_ENQ 0x05
  35. #define S_ACK  0x06
  36. #define S_BEL  0x07
  37. #define S_BS  0x08
  38. #define S_HT  0x09
  39. #define S_LF 0x0A
  40. #define S_VT 0x0B
  41. #define S_NP 0x0C
  42. #define S_CR 0x0D
  43. #define S_SO 0x0E
  44. #define S_SI 0x0F
  45. #define S_DLE 0x10
  46. #define S_DC1 0x11
  47. #define S_DC2 0x12
  48. #define S_DC3 0x13
  49. #define S_DC4 0x14
  50. #define S_NAK 0x15
  51. #define S_SYN 0x16
  52. #define S_ETB 0x17
  53. #define S_CAN 0x18
  54. #define S_EM 0x19
  55. #define S_SUB 0x1A
  56. #define S_ESC 0x1B
  57. #define S_FS 0x1C
  58. #define S_GS 0x1D
  59. #define S_RS 0x1E
  60. #define S_US 0x1F
  61. /* -------------------------------------------------------------------- */
  62. /* -------------------------------------------------------------------- */