const.h
来自「一个内存数据库的源代码这是服务器端还有客户端」· C头文件 代码 · 共 35 行
H
35 行
#ifndef _CONST_H#define _CONST_H#include "clients.h"#include "mal.h"#include "mal_client.h"#include "mal_interpreter.h"#include "mal_authorize.h"#ifdef WIN32#ifndef LIBCONST#define const_export extern __declspec(dllimport)#else#define const_export extern __declspec(dllexport)#endif#else#define const_export extern#endifconst_export str CSTprelude(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTopen(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTclose(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTdestroy(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTdeposit(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTtake(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTrelease(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTreleaseAll(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTdiscard(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTtoString(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTnewIterator(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSThasMoreElements(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);const_export str CSTepilogue(int *ret);#endif /* _CONST_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?