📄 main.cpp
字号:
#include "StdAfx.h"
#include "Main.h"
extern "C" DllExport void ufsta(char *param, int *returnCode, int rlen)
{
AFX_MANAGE_STATE(AfxGetStaticModuleState());
if((UF_initialize()) !=0) return;
int error_code = 0;
if((error_code = UF_MB_add_actions(action_table)) !=0)
{
char fail_message[133] = "";
UF_get_fail_message(error_code, fail_message);
// AfxMessageBox( fail_message,1);
}
UF_terminate();
return;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -