Definition/implementation can't be found for external methods with different parameter list

Issue #11 resolved
Christopher Wosinski repo owner created an issue
unit WinAPI.Windows;

interface

function InterlockedCompareExchange(var Destination: Integer; Exchange: Integer; Comparand: Integer): Integer stdcall;

implementation

function InterlockedCompareExchange; external kernel32 name 'InterlockedCompareExchange';

end.

Comments (2)

  1. Log in to comment