Update Settings Shell.

This commit is contained in:
Bruce
2025-11-29 23:02:15 +08:00
parent cf50b09bf0
commit 5796fb40e1
41 changed files with 515 additions and 383 deletions

22
reslib/reslib.h Normal file
View File

@@ -0,0 +1,22 @@
// 下列 ifdef 块是创建使从 DLL 导出更简单的
// 宏的标准方法。此 DLL 中的所有文件都是用命令行上定义的 RESLIB_EXPORTS
// 符号编译的。在使用此 DLL 的
// 任何其他项目上不应定义此符号。这样,源文件中包含此文件的任何其他项目都会将
// RESLIB_API 函数视为是从 DLL 导入的,而此 DLL 则将用此宏定义的
// 符号视为是被导出的。
#ifdef RESLIB_EXPORTS
#define RESLIB_API __declspec(dllexport)
#else
#define RESLIB_API __declspec(dllimport)
#endif
// 此类是从 reslib.dll 导出的
class RESLIB_API Creslib {
public:
Creslib(void);
// TODO: 在此添加您的方法。
};
extern RESLIB_API int nreslib;
RESLIB_API int fnreslib(void);