mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
ca8bc9dff4
Added the PDS file to extract the HTML Help files using PasDoc Added more XML documentation Fixed some XML errors. Removed the license copy from the pas units. Updated the LICENSE.md file
51 lines
844 B
ObjectPascal
51 lines
844 B
ObjectPascal
unit uCEFCallback;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefCallbackRef = class(TCefBaseRefCountedRef, ICefCallback)
|
|
protected
|
|
procedure Cont;
|
|
procedure Cancel;
|
|
|
|
public
|
|
class function UnWrap(data: Pointer): ICefCallback;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uCEFMiscFunctions, uCEFLibFunctions;
|
|
|
|
procedure TCefCallbackRef.Cancel;
|
|
begin
|
|
PCefCallback(FData)^.cancel(PCefCallback(FData));
|
|
end;
|
|
|
|
procedure TCefCallbackRef.Cont;
|
|
begin
|
|
PCefCallback(FData)^.cont(PCefCallback(FData));
|
|
end;
|
|
|
|
class function TCefCallbackRef.UnWrap(data: Pointer): ICefCallback;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefCallback
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|