Chapter 19 - Project Propcom |
Project Structure
| Propcom.dpr |
library PropCom;
uses
ComServ,
NumIntf in 'NumIntf.pas',
NumServ in 'NumServ.pas',
PropCom_TLB in 'PropCom_TLB.pas';
exports
DllGetClassObject,
DllCanUnloadNow,
DllRegisterServer,
DllUnregisterServer;
end.
| NumIntf.pas |
unit NumIntf;
interface
type
INumberProp = interface
['{B36C5800-8E59-11D0-98D0-444553540000}']
function GetValue: Integer; stdcall;
procedure SetValue (New: Integer); stdcall;
procedure Increase; stdcall;
property Value: Integer
read GetValue write SetValue;
end;
implementation
end.
| NumServ.pas |
unit NumServ;
interface
uses
Windows, ActiveX, ComObj, NumIntf;
type
TNumServer = class(TComObject, INumberProp)
private
fValue: Integer;
public
function GetValue: Integer; virtual; stdcall;
procedure SetValue (New: Integer); virtual; stdcall;
procedure Increase; virtual; stdcall;
procedure Initialize; override;
destructor Destroy; override;
end;
const
Class_NumPropServer: TGUID =
'{B165F7A1-DDF9-11D1-B9F1-004845400FAA}';
implementation
uses ComServ;
destructor TNumServer.Destroy;
begin
inherited;
MessageBox (0, 'Object Destroyed',
'TDLLNumber', mb_OK);
end;
function TNumServer.GetValue: Integer;
begin
Result := fValue;
end;
procedure TNumServer.Increase;
begin
Inc (fValue);
end;
procedure TNumServer.Initialize;
begin
inherited;
fValue := 10;
end;
procedure TNumServer.SetValue(New: Integer);
begin
fValue := New;
end;
initialization
TComObjectFactory.Create(ComServer, TNumServer, Class_NumPropServer,
'NumPropServer', 'Num Prop Server (Prop Com)', ciMultiInstance, tmSingle);
end.
| PropCom_TLB.pas |
unit PropCom_TLB;
interface
uses ActiveX, Classes, Graphics, StdVCL, Variants, Windows;
const
PropComMajorVersion = 1;
PropComMinorVersion = 0;
LIBID_PropCom: TGUID = '{5B2EF183-3AAE-11D3-B9F1-00000100A27B}';
implementation
uses ComObj;
end.
|
|