⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iopcserverpublicgroupsimpl.pas

📁 About delphi opc server a good file...
💻 PAS
字号:
function TDA2.GetPublicGroupByName(szName:POleStr; const riid:TIID; out ppUnk:IUnknown):HResult;stdcall;
begin
 if IsGroupNamePresent(pubGrps,szName) <> -1 then
  begin
   result:=S_OK;
   ppUnk:=self;
  end
 else
 result:=OPC_E_NOTFOUND;
end;

function TDA2.RemovePublicGroup(hServerGroup:OPCHANDLE; bForce:BOOL):HResult;stdcall;
begin
 //do something with the forse if needed
 GroupRemovingSelf(pubGrps,hServerGroup);
 result:=S_OK;
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -