author | unc0rr |
Mon, 22 Sep 2014 02:10:39 +0400 | |
branch | qmlfrontend |
changeset 10420 | 02c573d19224 |
parent 10418 | 091d2c0216c3 |
child 10428 | 7c25297720f1 |
permissions | -rw-r--r-- |
10406 | 1 |
unit uFLTypes; |
10418
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
2 |
interface |
10406 | 3 |
|
10418
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
4 |
type TIPCMessage = record |
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
5 |
str: shortstring; |
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
6 |
len: Longword; |
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
7 |
buf: Pointer |
091d2c0216c3
Move away from passing shortstrings into C code, now IPC works
unc0rr
parents:
10406
diff
changeset
|
8 |
end; |
10420 | 9 |
TIPCCallback = procedure (p: pointer; msg: PChar; len: Longword); |
10406 | 10 |
|
11 |
implementation |
|
12 |
||
13 |
end. |