hedgewars/uFLNetProtocol.pas
author unc0rr
Thu, 21 May 2015 00:19:06 +0300
branchqmlfrontend
changeset 10951 89a7f617e091
child 10953 360e57620df3
permissions -rw-r--r--
- Move protocol handling events to main thread through qt's main loop - Reorganize code a bit

unit uFLNetProtocol;
interface

procedure passNetData(p: pointer); cdecl;

implementation

procedure passNetData(p: pointer); cdecl;
begin
    writeln('meow')
end;

end.