hedgewars/uFLTypes.pas
author unc0rr
Sun, 28 Sep 2014 00:18:01 +0400
branchqmlfrontend
changeset 10426 727a154cf784
parent 10420 02c573d19224
child 10428 7c25297720f1
permissions -rw-r--r--
Some refactoring

unit uFLTypes;
interface

type TIPCMessage = record
                   str: shortstring;
                   len: Longword;
                   buf: Pointer
               end;
    TIPCCallback = procedure (p: pointer; msg: PChar; len: Longword);

implementation

end.