Fix some minor issues and re-enable building of DE, ES, FR, and IT locale data (help...
[oweals/cde.git] / cde / programs / dtstyle / SaveRestore.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: SaveRestore.h /main/5 1996/03/25 00:53:26 pascale $ */
24 /************************************<+>*************************************
25  ****************************************************************************
26  **
27  **   File:        SaveRestore.h
28  **
29  **   Project:     DT 3.0
30  **
31  **  This file contains function definitions for the corresponding .c
32  **  file
33  **
34  **
35  ****************************************************************************
36  ************************************<+>*************************************/
37 /*
38  * (c) Copyright 1996 Digital Equipment Corporation.
39  * (c) Copyright 1990, 1996 Hewlett-Packard Company.
40  * (c) Copyright 1996 International Business Machines Corp.
41  * (c) Copyright 1996 Sun Microsystems, Inc.
42  * (c) Copyright 1996 Novell, Inc. 
43  * (c) Copyright 1996 FUJITSU LIMITED.
44  * (c) Copyright 1996 Hitachi.
45  */
46
47 #ifndef _saverestore_h
48 #define _saverestore_h
49
50 /* External Interface */
51
52
53 extern void saveSessionCB( 
54                         Widget w,
55                         XtPointer client_data,
56                         XtPointer call_data) ;
57 extern Boolean restoreSession( 
58                         Widget shell,
59                         char *name) ;
60
61 extern void restoreFonts( Widget shell, XrmDatabase db) ;
62 extern void saveFonts( int fd) ;
63 extern void restoreMain( Widget shell, XrmDatabase db) ;
64 extern void saveMain( int fd) ;
65 extern void restoreMouse( Widget shell, XrmDatabase db) ;
66 extern void saveMouse( int fd) ;
67 extern void restoreAudio( Widget shell, XrmDatabase db) ;
68 extern void saveAudio( int fd) ;
69 extern void restoreScreen( Widget shell, XrmDatabase db) ;
70 extern void saveScreen( int fd) ;
71 extern void restoreColor( Widget shell, XrmDatabase db) ;
72 extern void saveColor( int fd) ;
73 extern void restoreColorEdit( Widget shell, XrmDatabase db) ;
74 extern void saveColorEdit( int fd) ;
75 extern void restoreKeybd( Widget shell, XrmDatabase db) ;
76 extern void saveKeybd( int fd) ;
77 extern void restoreStartup( Widget shell, XrmDatabase db) ;
78 extern void saveStartup( int fd) ;
79 extern void restoreBackdrop( Widget shell, XrmDatabase db) ;
80 extern void saveBackdrop( int fd) ;
81 extern void restoreI18n( Widget shell, XrmDatabase db) ;
82 extern void saveI18n( int fd) ;
83
84
85 #endif /* _saverestore_h */
86 /* DON'T ADD ANYTHING AFTER THIS #endif */
87
88