1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-08-14 21:42:50 +02:00

Fixed Lazarus build issue

This commit is contained in:
salvadordf
2023-04-15 19:03:59 +02:00
parent a0e2bcfbd8
commit 7c2f9cab18
2 changed files with 3 additions and 3 deletions

View File

@@ -1544,8 +1544,8 @@ begin
if (NetServerGetInfo(nil, 101, Pointer(TempBuffer)) = NO_ERROR) then if (NetServerGetInfo(nil, 101, Pointer(TempBuffer)) = NO_ERROR) then
try try
aMajor := TempBuffer.sv101_version_major and MAJOR_VERSION_MASK; aMajor := TempBuffer^.sv101_version_major and MAJOR_VERSION_MASK;
aMinor := TempBuffer.sv101_version_minor; aMinor := TempBuffer^.sv101_version_minor;
Result := True; Result := True;
finally finally
NetApiBufferFree(TempBuffer); NetApiBufferFree(TempBuffer);

View File

@@ -2,7 +2,7 @@
"UpdateLazPackages" : [ "UpdateLazPackages" : [
{ {
"ForceNotify" : true, "ForceNotify" : true,
"InternalVersion" : 480, "InternalVersion" : 481,
"Name" : "cef4delphi_lazarus.lpk", "Name" : "cef4delphi_lazarus.lpk",
"Version" : "112.2.9" "Version" : "112.2.9"
} }