Skip to content

Commit

Permalink
fixed missing stdcall (fixes spring4d#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sglienke committed Oct 16, 2023
1 parent 933d100 commit f7cd001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Spring.Benchmark.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ TSystemLogicalProcessorInformation = record
PSystemLogicalProcessorInformation = ^TSystemLogicalProcessorInformation;

function GetLogicalProcessorInformation(Buffer: PSystemLogicalProcessorInformation;
var ReturnedLength: DWORD): BOOL; external kernel32 name 'GetLogicalProcessorInformation';
var ReturnedLength: DWORD): BOOL; stdcall; external kernel32 name 'GetLogicalProcessorInformation';

procedure WakeAllConditionVariable(var ConditionVariable: TRTLConditionVariable); stdcall;
external kernel32 name 'WakeAllConditionVariable';
Expand Down

0 comments on commit f7cd001

Please sign in to comment.