author | unc0rr |
Sun, 28 Sep 2014 01:17:55 +0400 | |
branch | qmlfrontend |
changeset 10430 | 899a30018ede |
parent 10428 | 7c25297720f1 |
child 10432 | b0abef0ee78c |
permissions | -rw-r--r-- |
unit uFLTypes; interface type TMessageType = (mtPreview); TIPCMessage = record str: shortstring; len: Longword; buf: Pointer end; TIPCCallback = procedure (p: pointer; msg: PChar; len: Longword); TGUICallback = procedure (p: pointer; msgType: TMessageType; msg: PChar; len: Longword); cdecl; implementation end.