~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to samples/ipc/ipcsetup.h

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        ipcsetup.h
 
3
// Purpose:     IPC sample settings
 
4
// Author:      Julian Smart
 
5
// Modified by: Jurgen Doornik
 
6
// Created:     25/01/99
 
7
// RCS-ID:      $Id: ipcsetup.h 61508 2009-07-23 20:30:22Z VZ $
 
8
// Copyright:   (c) Julian Smart
 
9
// Licence:     wxWindows licence
 
10
/////////////////////////////////////////////////////////////////////////////
 
11
 
 
12
// You may set this to 0 to prevent DDE from being used even under Windows
 
13
//#define wxUSE_DDE_FOR_IPC 0
 
14
 
 
15
#include "wx/ipc.h"
 
16
 
 
17
// the default service name
 
18
#define IPC_SERVICE "4242"
 
19
//#define IPC_SERVICE wxT("/tmp/wxsrv424")
 
20
 
 
21
// the hostname
 
22
#define IPC_HOST "localhost"
 
23
 
 
24
// the IPC topic
 
25
#define IPC_TOPIC "IPC TEST"
 
26
 
 
27
// the name of the item we're being advised about
 
28
#define IPC_ADVISE_NAME "Item"
 
29
 
 
30
 
 
31
// the values used by tests/benchmarks/ipcclient.cpp
 
32
#define IPC_BENCHMARK_TOPIC "wxIPC BENCH"
 
33
#define IPC_BENCHMARK_ITEM "Benchmark"