📄 pcsyn_protocodll.c
字号:
// pcsyn_protocodll.cpp : Defines the entry point for the DLL application.
//
#include <wtypes.h>
#include "pcsyn_protocoldll.h"
HANDLE hApp;
//DllExport int Serial_Open(unsigned char* name,unsigned baudtrate);
long __stdcall DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
hApp = hModule;
return TRUE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -