Applied patch [ 867187 ] wxWindows-like markup in TEX2RTF tool

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-01-08 11:54:30 +00:00
parent 6ee9b7b53e
commit 6c155d3387
14 changed files with 3625 additions and 3742 deletions

View File

@@ -43,7 +43,7 @@ void Text2RTF(TexChunk *chunk);
*
*/
void PushEnvironmentStyle(char *style);
void PushEnvironmentStyle(wxChar *style);
void PopEnvironmentStyle(void);
@@ -51,10 +51,10 @@ void PopEnvironmentStyle(void);
void WriteEnvironmentStyles(void);
// Called on start/end of macro examination
void DefaultRtfOnMacro(char *name, int no_args, bool start);
void DefaultRtfOnMacro(wxChar *name, int no_args, bool start);
// Called on start/end of argument examination
bool DefaultRtfOnArgument(char *macro_name, int arg_no, bool start);
bool DefaultRtfOnArgument(wxChar *macro_name, int arg_no, bool start);
// Reset memory of which levels have 'books' (for WinHelp 4 contents file)
void ResetContentsLevels(int level);