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

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * wap-appl.h - interface to application layer
  3.  */
  4. #ifndef WAP_APPL_H
  5. #define WAP_APPL_H
  6. #include "wap/wap.h"
  7. void wap_appl_init(Cfg *cfg);
  8. void wap_appl_dispatch(WAPEvent *event);
  9. void wap_appl_shutdown(void);
  10. long wap_appl_get_load(void);
  11. /* configure an URL mapping; parses string on whitespace, uses left
  12.  * part for the source URL, and right part for the destination URL
  13.  */
  14. void wsp_http_map_url_config(char *);
  15. /* configure an URL mapping from source DEVICE:home to given string */
  16. void wsp_http_map_url_config_device_home(char *);
  17. /* show all configured URL mappings */
  18. void wsp_http_map_url_config_info(void);
  19. /* Free URL mapping table. */
  20. void wsp_http_map_destroy(void);
  21. #endif