ResConfigP.h revision 9e7bcd65
1444c061aSmrg/* 2444c061aSmrg 3444c061aSmrgCopyright 1987, 1988, 1998 The Open Group 4444c061aSmrg 5444c061aSmrgPermission to use, copy, modify, distribute, and sell this software and its 6444c061aSmrgdocumentation for any purpose is hereby granted without fee, provided that 7444c061aSmrgthe above copyright notice appear in all copies and that both that 8444c061aSmrgcopyright notice and this permission notice appear in supporting 9444c061aSmrgdocumentation. 10444c061aSmrg 11444c061aSmrgThe above copyright notice and this permission notice shall be included in 12444c061aSmrgall copies or substantial portions of the Software. 13444c061aSmrg 14444c061aSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15444c061aSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16444c061aSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17444c061aSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18444c061aSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19444c061aSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20444c061aSmrg 21444c061aSmrgExcept as contained in this notice, the name of The Open Group shall not be 22444c061aSmrgused in advertising or otherwise to promote the sale, use or other dealings 23444c061aSmrgin this Software without prior written authorization from The Open Group. 24444c061aSmrg 25444c061aSmrg*/ 26444c061aSmrg/***************************************************************** 27444c061aSmrg 28444c061aSmrg(C) COPYRIGHT International Business Machines Corp. 1992,1997 29444c061aSmrg All Rights Reserved 30444c061aSmrg 31444c061aSmrgPermission is hereby granted, free of charge, to any person obtaining a copy 32444c061aSmrgof this software and associated documentation files (the "Software"), to deal 33444c061aSmrgin the Software without restriction, including without limitation the rights 34444c061aSmrgto use, copy, modify, merge, publish, distribute, sublicense, and/or sell 35444c061aSmrgcopies of the Software. 36444c061aSmrg 37444c061aSmrgThe above copyright notice and this permission notice shall be included in 38444c061aSmrgall copies or substantial portions of the Software. 39444c061aSmrg 40444c061aSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 41444c061aSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 42444c061aSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 43444c061aSmrgTHE IBM CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING, 44444c061aSmrgBUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY, 45444c061aSmrgWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 46444c061aSmrgIN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 47444c061aSmrg 48444c061aSmrgExcept as contained in this notice, the name of the IBM Corporation shall 49444c061aSmrgnot be used in advertising or otherwise to promote the sale, use or other 50444c061aSmrgdealings in this Software without prior written authorization from the IBM 51444c061aSmrgCorporation. 52444c061aSmrg 53444c061aSmrg******************************************************************/ 54444c061aSmrg 55444c061aSmrg#ifndef _RESCONFIGP_H 56444c061aSmrg#define _RESCONFIGP_H 57444c061aSmrg 58444c061aSmrg#include <X11/Xfuncproto.h> 59444c061aSmrg 60444c061aSmrg_XFUNCPROTOBEGIN 61444c061aSmrg 62444c061aSmrg/* 63444c061aSmrg * Atom names for resource configuration management customization tool. 64444c061aSmrg */ 65444c061aSmrg#define RCM_DATA "Custom Data" 66444c061aSmrg#define RCM_INIT "Custom Init" 67444c061aSmrg 68444c061aSmrgextern void _XtResourceConfigurationEH( 699e7bcd65Smrg Widget /* w */, 709e7bcd65Smrg XtPointer /* client_data */, 71444c061aSmrg XEvent * /* event */ 72444c061aSmrg); 73444c061aSmrg 74444c061aSmrg_XFUNCPROTOEND 75444c061aSmrg 76444c061aSmrg#endif 77