ota_compiler.h
资源名称:gateway-1.2.1 [点击查看]
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:
手机WAP编程
开发平台:
WINDOWS
- /*
- * ota_compiler.h: The interface to ota settings and bookmarks tokenizer
- *
- * By Aarno Syv鋘en for Wiral Ltd
- */
- #ifndef OTA_COMPILER_H
- #define OTA_COMPILER_H
- #include "gwlib/gwlib.h"
- /*
- * Compiles an ota document to ota binary. Input textual form of a ota document
- * and its charset (from http headers), output the document in a tokenised
- * form.
- * Returns -1 when error, 0 otherwise.
- */
- int ota_compile(Octstr *ota_doc, Octstr *charset, Octstr **ota_binary);
- #endif