Document wxKill(wxSIGTERM) reliance on having an open window in wxMSW.
[wxWidgets.git] / interface / wx / ipcbase.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: ipcbase.h
3 // Purpose: interface of wxConnectionBase
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 An enumeration for formats .
11 */
12 enum wxIPCFormat
13 {
14 wxIPC_INVALID = 0,
15 wxIPC_TEXT = 1, ///< CF_TEXT
16 wxIPC_BITMAP = 2, ///< CF_BITMAP
17 wxIPC_METAFILE = 3, ///< CF_METAFILEPICT
18 wxIPC_SYLK = 4,
19 wxIPC_DIF = 5,
20 wxIPC_TIFF = 6,
21 wxIPC_OEMTEXT = 7, ///< CF_OEMTEXT
22 wxIPC_DIB = 8, ///< CF_DIB
23 wxIPC_PALETTE = 9,
24 wxIPC_PENDATA = 10,
25 wxIPC_RIFF = 11,
26 wxIPC_WAVE = 12,
27 wxIPC_UTF16TEXT = 13, ///< CF_UNICODE
28 wxIPC_ENHMETAFILE = 14,
29 wxIPC_FILENAME = 15, ///< CF_HDROP
30 wxIPC_LOCALE = 16,
31 wxIPC_UTF8TEXT = 17,
32 wxIPC_UTF32TEXT = 18,
33 wxIPC_UNICODETEXT = wxIPC_UTF16TEXT,
34 wxIPC_PRIVATE = 20
35 };
36
37 /**
38 @class wxConnectionBase
39
40 @todo Document this class.
41
42 This class provides base, common functionality shared between
43 wxDDEConnection, and wxTCPConnection.
44
45 @library{wxbase}
46 @category{ipc}
47
48 @see wxDDEConnection, wxTCPConnection
49 */
50 class wxConnectionBase: public wxObject
51 {
52 public:
53
54 };
55