⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 code_emit.h

📁 < Game Script Mastery>> source code
💻 H
字号:
/*

    Project.

        XSC - The XtremeScript Compiler Version 0.8

    Abstract.

        Code emission module header

    Date Created.

        9.2.2002

    Author.

        Alex Varanese

*/

#ifndef XSC_CODE_EMIT
#define XSC_CODE_EMIT

// ---- Include Files -------------------------------------------------------------------------

    #include "xsc.h"
    #include "error.h"
    #include "func_table.h"
    #include "symbol_table.h"
    #include "i_code.h"

// ---- Constants -----------------------------------------------------------------------------

    #define TAB_STOP_WIDTH                      8       // The width of a tab stop in
                                                        // characters

// ---- Function Prototypes -------------------------------------------------------------------

    void EmitHeader ();
    void EmitDirectives ();
    void EmitScopeSymbols ( int iScope, int iType );
    void EmitFunc ( FuncNode * pFunc );
    void EmitCode ();

#endif

⌨️ 快捷键说明

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