📄 wg_doorforbid.dpr
字号:
library WG_DoorForbid;
{ Important note about DLL memory management: ShareMem must be the
first unit in your library's USES clause AND your project's (select
Project-View Source) USES clause if your DLL exports any procedures or
functions that pass strings as parameters or function results. This
applies to all strings passed to and from your DLL--even those that
are nested in records and classes. ShareMem is the interface unit to
the BORLNDMM.DLL shared memory manager, which must be deployed along
with your DLL. To avoid using BORLNDMM.DLL, pass string information
using PChar or ShortString parameters. }
uses
ShareMem,
SysUtils,
Classes,
wgDF_source in 'wgDF_source.pas',
CommuFunc in 'CommuFunc.pas',
CommuniactFunc in 'CommuniactFunc.pas';
{$R *.res}
exports
WG_OpenComm name 'WG_OpenComm',
CloseComm name 'CloseComm',
ReadDeviceStatus name 'ReadDeviceStatus',
SetDeviceTime name 'SetDeviceTime',
ReadDeviceData name 'ReadDeviceData',
ClearDeviceData name 'ClearDeviceData',
SetDoorCtlParam name 'SetDoorCtlParam',
SetReadCMUsePWD name 'SetReadCMUsePWD',
ClearDeviceRightData name 'ClearDeviceRightData',
ReadDeviceRightData name 'ReadDeviceRightData',
SetDeviceUserRight name 'SetDeviceUserRight',
FarwayOpenDoor name 'FarwayOpenDoor',
SetWarningRecord name 'SetWarningRecord',
SetNotCardBack name 'SetNotCardBack',
SetDoorLinkLock name 'SetDoorLinkLock',
SetRecordButtonEvent name 'SetRecordButtonEvent',
SetRecordWarningEvent name 'SetRecordWarningEvent',
ReadDeviceTimeGP name 'ReadDeviceTimeGP',
SetDeviceTimeGP name 'SetDeviceTimeGP',
ClearDeviceTimeGP name 'ClearDeviceTimeGP',
SetWarningOutPort name 'SetWarningOutPort',
SetCoercePWD name 'SetCoercePWD',
SetOpenDoorPWD name 'SetOpenDoorPWD',
FormatDFControl name 'FormatDFControl',
SetOpenDoorParam name 'SetOpenDoorParam',
SetTimeMession name 'SetTimeMession';
begin
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -