📄 factory.h
字号:
#ifndef _FACTORY_H#define _FACTORY_H#include "mal.h"#include "mal_interpreter.h"#include "mal_namespace.h"#ifdef WIN32#ifndef LIBFACTORY#define factory_export extern __declspec(dllimport)#else#define factory_export extern __declspec(dllexport)#endif#else#define factory_export extern#endiffactory_export str FCTgetPlants(int *ret);factory_export str FCTgetCaller(int *ret);factory_export str FCTgetOwners(int *ret);factory_export str FCTgetTimeStampIn(int *ret);factory_export str FCTgetTimeStampOut(int *ret);factory_export str FCTsetLocation(int *ret, str *loc);factory_export str FCTgetLocations(int *ret);factory_export str FCTshutdown(int *ret, str *mod, str *fcn);#endif /* _FACTORY_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -