mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
Move DtXinerama.h and PamSvc.h into include/Dt/
This commit is contained in:
parent
e10d06f210
commit
3a0c2ae879
16 changed files with 16 additions and 72 deletions
|
@ -26,7 +26,9 @@ nobase_include_HEADERS = Dt/Editor.h \
|
||||||
csa/csa.h \
|
csa/csa.h \
|
||||||
Dt/Info.h \
|
Dt/Info.h \
|
||||||
Dt/Search.h \
|
Dt/Search.h \
|
||||||
Dt/Mmdb.h
|
Dt/Mmdb.h \
|
||||||
|
Dt/DtXinerama.h \
|
||||||
|
Dt/PamSvc.h
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,58 +0,0 @@
|
||||||
/*
|
|
||||||
* CDE - Common Desktop Environment
|
|
||||||
*
|
|
||||||
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
||||||
*
|
|
||||||
* These libraries and programs are free software; you can
|
|
||||||
* redistribute them and/or modify them under the terms of the GNU
|
|
||||||
* Lesser General Public License as published by the Free Software
|
|
||||||
* Foundation; either version 2 of the License, or (at your option)
|
|
||||||
* any later version.
|
|
||||||
*
|
|
||||||
* These libraries and programs are distributed in the hope that
|
|
||||||
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
||||||
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
* PURPOSE. See the GNU Lesser General Public License for more
|
|
||||||
* details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with these libraries and programs; if not, write
|
|
||||||
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
||||||
* Floor, Boston, MA 02110-1301 USA
|
|
||||||
*/
|
|
||||||
/* $XConsortium: pam_svc.h /main/3 1996/10/30 11:13:40 drk $ */
|
|
||||||
/*******************************************************************************
|
|
||||||
**
|
|
||||||
** "@(#)pam_svc.h 1.4 95/09/12
|
|
||||||
**
|
|
||||||
** Copyright 1993, 1994, 1995 Sun Microsystems, Inc. All rights reserved.
|
|
||||||
**
|
|
||||||
** This file contains header info related to use of PAM
|
|
||||||
** (Pluggable Authentication Module) library.
|
|
||||||
**
|
|
||||||
*******************************************************************************/
|
|
||||||
/* *
|
|
||||||
* (c) Copyright 1993, 1994 Hewlett-Packard Company *
|
|
||||||
* (c) Copyright 1993, 1994 International Business Machines Corp. *
|
|
||||||
* (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc. *
|
|
||||||
* (c) Copyright 1993, 1994 Novell, Inc. *
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _DT_PAM_SVC_H
|
|
||||||
#define _DT_PAM_SVC_H
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#define DT_BAD_GID 29 /* Invalid Group ID */
|
|
||||||
#define DT_INITGROUP_FAIL 30 /* group IDs init failed */
|
|
||||||
#define DT_BAD_UID 31 /* Invaid User ID */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* External procedure declarations
|
|
||||||
*/
|
|
||||||
|
|
||||||
extern int _DtAuthentication(char*, char*, char*, char*, char*);
|
|
||||||
extern int _DtAccounting(char*, char*, char[], char*, char*, pid_t, int, int);
|
|
||||||
extern int _DtSetCred(char*, char *, uid_t, gid_t);
|
|
||||||
|
|
||||||
#endif /* _DT_PAM_SVC_H */
|
|
|
@ -54,7 +54,7 @@
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#endif
|
#endif
|
||||||
#include "PamSvc.h"
|
#include <Dt/PamSvc.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Local function declarations
|
* Local function declarations
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
#include <Dt/Connect.h>
|
#include <Dt/Connect.h>
|
||||||
#include <Dt/DtNlUtils.h>
|
#include <Dt/DtNlUtils.h>
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
#include "SharedProcs.h"
|
#include "SharedProcs.h"
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
|
|
||||||
#include "DtXinerama.h"
|
#include <Dt/DtXinerama.h>
|
||||||
|
|
||||||
/* return a DtXineramaInfo_t (or NULL if no Xinerama) available */
|
/* return a DtXineramaInfo_t (or NULL if no Xinerama) available */
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
#include "Main.h"
|
#include "Main.h"
|
||||||
#include "ModAttr.h"
|
#include "ModAttr.h"
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MAX_NAME_LIST_SIZE 25
|
#define MAX_NAME_LIST_SIZE 25
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
#include <Dt/MenuButton.h>
|
#include <Dt/MenuButton.h>
|
||||||
|
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAS_PAM_LIBRARY
|
#ifdef HAS_PAM_LIBRARY
|
||||||
#include <PamSvc.h>
|
#include <Dt/PamSvc.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int ApplyFontPathMods(struct display *d, Display *dpy); // fontpath.c
|
int ApplyFontPathMods(struct display *d, Display *dpy); // fontpath.c
|
||||||
|
|
|
@ -67,7 +67,7 @@ extern int errno;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
# include <DtXinerama.h>
|
# include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define SIGVAL void
|
#define SIGVAL void
|
||||||
|
|
|
@ -91,7 +91,7 @@
|
||||||
|
|
||||||
|
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(NL_CAT_LOCALE)
|
#if !defined(NL_CAT_LOCALE)
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
#include "SmError.h"
|
#include "SmError.h"
|
||||||
|
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
# include <DtXinerama.h>
|
# include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAS_PAM_LIBRARY
|
#ifdef HAS_PAM_LIBRARY
|
||||||
#include <PamSvc.h>
|
#include <Dt/PamSvc.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "Sm.h"
|
#include "Sm.h"
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
#include <Dt/DtP.h>
|
#include <Dt/DtP.h>
|
||||||
#include <Dt/Lock.h>
|
#include <Dt/Lock.h>
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h> /* JET - Xinerama support */
|
#include <Dt/DtXinerama.h> /* JET - Xinerama support */
|
||||||
#endif
|
#endif
|
||||||
#include "Sm.h"
|
#include "Sm.h"
|
||||||
#include "SmError.h"
|
#include "SmError.h"
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
#include "SmGlobals.h"
|
#include "SmGlobals.h"
|
||||||
|
|
||||||
#ifdef USE_XINERAMA
|
#ifdef USE_XINERAMA
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
/*
|
/*
|
||||||
* Included Files:
|
* Included Files:
|
||||||
*/
|
*/
|
||||||
#include <DtXinerama.h>
|
#include <Dt/DtXinerama.h>
|
||||||
|
|
||||||
#include "WmMultiHead.h"
|
#include "WmMultiHead.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue