1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-22 22:17:48 +02:00
Files
.github
bin
demos
Delphi_FMX_Linux
Delphi_FMX_Mac
Delphi_FMX_Windows
Delphi_VCL
Lazarus_Linux_Console
ConsoleBrowser
LibraryBrowser
00-Delete.bat
custombrowser.lpi
custombrowser.lpr
interfaces.pas
librarybrowser.lpi
librarybrowser.lpr
librarybrowser_sp.lpi
librarybrowser_sp.lpr
ucefbrowserthread.pas
ucustombrowserloader.pas
ucustommessage.pas
uencapsulatedbrowser.pas
uworkerthread.pas
Lazarus_Linux_GTK2
Lazarus_Linux_GTK3
Lazarus_Mac
Lazarus_Windows
Lazarus_any_OS
docs
packages
source
tools
.gitignore
Delphinus.Info.json
Delphinus.Install.json
LICENSE.md
README.md
update_CEF4Delphi.json
CEF4Delphi/demos/Lazarus_Linux_Console/LibraryBrowser/ucustommessage.pas

38 lines
501 B
ObjectPascal
Raw Normal View History

unit ucustommessage;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
TMsgInfo = record
Msg : integer;
StrParam : string;
IntParam : integer;
end;
TCustomMessage = class
protected
FValue : TMsgInfo;
public
constructor Create(const aValue : TMsgInfo);
property Value : TMsgInfo read FValue;
end;
implementation
constructor TCustomMessage.Create(const aValue : TMsgInfo);
begin
inherited Create;
FValue := aValue;
end;
end.