summaryrefslogtreecommitdiff
path: root/src/ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc.h')
-rw-r--r--src/ipc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ipc.h b/src/ipc.h
index 8127bf86..69852876 100644
--- a/src/ipc.h
+++ b/src/ipc.h
@@ -21,6 +21,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 21SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
22 22
23#pragma once 23#pragma once
24#if defined (LAGRANGE_ENABLE_IPC)
24 25
25#include <the_Foundation/string.h> 26#include <the_Foundation/string.h>
26#include <the_Foundation/process.h> 27#include <the_Foundation/process.h>
@@ -39,3 +40,5 @@ enum iIpcWrite {
39}; 40};
40 41
41iBool write_Ipc (iProcessId pid, const iString *input, enum iIpcWrite type); 42iBool write_Ipc (iProcessId pid, const iString *input, enum iIpcWrite type);
43
44#endif /* defined (LAGRANGE_ENABLE_IPC) */