doxface.h

来自「把html转成txt 把html转成txt」· C头文件 代码 · 共 38 行

H
38
字号
//---------------------------------------------------------------------------
#ifndef doxfaceH
#define doxfaceH

#if __cplusplus
extern "C" {
#endif

#ifndef __DOX_H__
enum doc_code
        {
        doc_rtf,  /* rtf (Rich Text Format) */
        doc_html, /* html (HyperText Markup Language) */
        doc_text, /* text ASCII text */
        doc_word  /* word (MS Word) - not yet supported. */
        };
#endif

#define DOX_IN_RTF (doc_rtf+1)
#define DOX_IN_HTML (doc_html+1)
#define DOX_IN_TEXT (doc_text+1)

#define DOX_OUT_RTF ((doc_rtf+1)<<4)
#define DOX_OUT_HTML ((doc_html+1)<<4)
#define DOX_OUT_TEXT ((doc_text+1)<<4)

long _export _cdecl DoxConvert(char *InFile, char *OutFile, long Options);

long _export _cdecl DoxStringConvert(char *InBuffer, long InLength,
    char *OutBuffer, long OutLength, long Options);


#if __cplusplus
}
#endif
//---------------------------------------------------------------------------
#endif
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?