10 lines
86 B
C
10 lines
86 B
C
|
#ifndef IPC_H
|
||
|
#define IPC_H
|
||
|
|
||
|
enum IPCCommand
|
||
|
{
|
||
|
DocOpen,
|
||
|
FileOpen
|
||
|
};
|
||
|
#endif // IPC_H
|