hedgewars/uFLTypes.pas
author unc0rr
Sat, 27 Sep 2014 12:49:08 +0400
branchqmlfrontend
changeset 10424 4be6cd55f1cf
parent 10420 02c573d19224
child 10428 7c25297720f1
permissions -rw-r--r--
- Get rid of engine's PathPrefix and UserPathPrefix - 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.