source: trunk/Packages/Kernel/Kernel.IPC.pas

Last change on this file was 60, checked in by chronos, 8 months ago
  • Modified: Remove U prefix from unit names.
File size: 170 bytes
Line 
1unit Kernel.IPC;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8type
9 TIPCMessage = class
10 Name: string;
11 Action: string;
12 end;
13
14
15implementation
16
17end.
18
Note: See TracBrowser for help on using the repository browser.