wsp_push_client_machine.def
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * wsp-push-client-machine.h: Define wsp push client state machine
  3.  *
  4.  * By Aarno Syv鋘en for Wapit Ltd. 
  5.  */
  6. #if !defined(INTEGER)
  7.     #error "Macro INTEGER not defined."
  8. #elif !defined(HTTPHEADERS)
  9.     #error "Macro HTTPHEADERS not defined."
  10. #elif !defined(MACHINE)
  11.     #error "Macro MACHINE is not defined."
  12. #endif
  13. MACHINE(
  14. INTEGER(state)
  15.         INTEGER(client_push_id)
  16.         INTEGER(transaction_id)
  17.         INTEGER(session_id)
  18.         HTTPHEADERS(push_headers)
  19.        )
  20. #undef INTEGER
  21. #undef HTTPHEADERS
  22. #undef MACHINE