-
Notifications
You must be signed in to change notification settings - Fork 1
/
XWBReg.pas
46 lines (37 loc) · 1.23 KB
/
XWBReg.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ **************************************************************
Package: XWB - Kernel RPCBroker
Date Created: Sept 18, 1997 (Version 1.1)
Site Name: Oakland, OI Field Office, Dept of Veteran Affairs
Developers: Danila Manapsal, Don Craven, Joel Ivey
Description: Registers components and property editors.
Current Release: Version 1.1 Patch 40 (January 7, 2005))
*************************************************************** }
unit XWBReg;
{$I IISBase.inc}
interface
procedure Register;
implementation
uses Classes,
{$IFDEF D6_OR_HIGHER}
DesignIntf, DesignEditors, DesignMenus,
{$ELSE}
DsgnIntf,
{$ENDIF}
ExptIntf, //Delphi units
Trpcb, CCOWRPCBroker,
RpcbEdtr, XWBRich20, //Broker units
//{$IFDEF VER130}
// VERGENCECONTEXTORLib_TLB_D50;
//{$ENDIF}
//{$IFDEF VER140}
// VERGENCECONTEXTORLib_TLB_D60; //CCOW
//ENDIF}
VergenceContextorLib_TLB;
procedure Register;
begin
RegisterComponents('Kernel',[TRPCBroker, TCCOWRPCBroker, TXWBRichEdit, TContextorControl]);
RegisterPropertyEditor(TypeInfo(TRemoteProc),nil,'',TRemoteProcProperty);
RegisterPropertyEditor(TypeInfo(TServer),nil,'',TServerProperty);
RegisterPropertyEditor(TypeInfo(TRpcVersion),nil,'',TRpcVersionProperty);
end;
end.