summaryrefslogtreecommitdiff
path: root/smproxy.h
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 15:54:53 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 15:54:53 +0000
commitf4d5033f594bf278ff1171091219b3c28dc45446 (patch)
treeac5a9d76006c7b9ef385ac41b5d5d2a6a92903a3 /smproxy.h
R6.6 is the Xorg base-lineXORG-MAINXORG-STABLE
Diffstat (limited to 'smproxy.h')
-rw-r--r--smproxy.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/smproxy.h b/smproxy.h
new file mode 100644
index 0000000..a6e7522
--- /dev/null
+++ b/smproxy.h
@@ -0,0 +1,101 @@
+/* $Xorg: smproxy.h,v 1.4 2001/02/09 02:05:36 xorgcvs Exp $ */
+/******************************************************************************
+
+Copyright 1994, 1998 The Open Group
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation.
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of The Open Group shall not be
+used in advertising or otherwise to promote the sale, use or other dealings
+in this Software without prior written authorization from The Open Group.
+
+Author: Ralph Mor, X Consortium
+******************************************************************************/
+
+#include <X11/Xosdefs.h>
+#include <X11/Xfuncs.h>
+
+#include <X11/StringDefs.h>
+#include <X11/Intrinsic.h>
+#include <X11/Xatom.h>
+#include <X11/Xlib.h>
+#include <X11/SM/SMlib.h>
+
+#ifndef _POSIX_SOURCE
+#define _POSIX_SOURCE
+#include <stdio.h>
+#undef _POSIX_SOURCE
+#else
+#include <stdio.h>
+#endif
+
+#ifndef X_NOT_STDC_ENV
+#include <stdlib.h>
+#else
+extern char *malloc(), *calloc(), *realloc(), *getenv();
+extern void free();
+#endif
+
+#ifndef X_NOT_POSIX
+#ifdef _POSIX_SOURCE
+#include <limits.h>
+#else
+#define _POSIX_SOURCE
+#include <limits.h>
+#undef _POSIX_SOURCE
+#endif
+#endif /* X_NOT_POSIX */
+#ifndef PATH_MAX
+#include <sys/param.h>
+#ifndef PATH_MAX
+#ifdef MAXPATHLEN
+#define PATH_MAX MAXPATHLEN
+#else
+#define PATH_MAX 1024
+#endif
+#endif
+#endif /* PATH_MAX */
+
+
+typedef struct WinInfo {
+ Window window;
+ SmcConn smc_conn;
+ XtInputId input_id;
+ char *client_id;
+ char **wm_command;
+ int wm_command_count;
+ XClassHint class;
+ char *wm_name;
+ XTextProperty wm_client_machine;
+ struct WinInfo *next;
+
+ unsigned int tested_for_sm_client_id : 1;
+ unsigned int has_save_yourself : 1;
+ unsigned int waiting_for_update : 1;
+ unsigned int got_first_save_yourself : 1;
+
+} WinInfo;
+
+
+extern int WriteProxyFileEntry ();
+extern int ReadProxyFileEntry ();
+extern void ReadProxyFile ();
+extern char *WriteProxyFile ();
+extern char *LookupClientID ();
+
+
+#define SAVEFILE_VERSION 1