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

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * ota_compiler.h: The interface to ota settings and bookmarks tokenizer 
  3.  *
  4.  * By Aarno Syv鋘en for Wiral Ltd
  5.  */
  6. #ifndef OTA_COMPILER_H
  7. #define OTA_COMPILER_H
  8. #include "gwlib/gwlib.h"
  9. /*
  10.  * Compiles an ota document to ota binary. Input textual form of a ota document
  11.  * and its charset (from http headers), output the document in a tokenised 
  12.  * form.
  13.  * Returns -1 when error, 0 otherwise.
  14.  */
  15. int ota_compile(Octstr *ota_doc, Octstr *charset, Octstr **ota_binary);
  16. #endif