remove empty dir
[reactos.git] / rosapps / winfile / settings.h
1 /*
2 * ReactOS winfile
3 *
4 * settings.h
5 *
6 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #ifndef __SETTINGS_H__
24 #define __SETTINGS_H__
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30
31 #include "resource.h"
32
33
34 #define CONFIRM_FILE_DELETE 0x0001
35 #define CONFIRM_DIR_DELETE 0x0002
36 #define CONFIRM_FILE_REPLACE 0x0004
37 #define CONFIRM_MOUSE_ACTIONS 0x0008
38 #define CONFIRM_DISK_COMMANDS 0x0010
39 #define CONFIRM_MODIFY_SYSTEM 0x0020
40
41 #define VIEW_DIRECTORIES 0x0001
42 #define VIEW_PROGRAMS 0x0002
43 #define VIEW_DOCUMENTS 0x0004
44 #define VIEW_OTHER 0x0008
45 #define VIEW_SYSTEM 0x0010
46
47 #define MAX_TYPE_MASK_LEN 50
48
49 extern DWORD Confirmation;
50 extern DWORD ViewType;
51 extern TCHAR ViewTypeMaskStr[MAX_TYPE_MASK_LEN];
52 //extern LPCTSTR lpViewTypeMaskStr;
53
54 void LoadSettings(void);
55 void SaveSettings(void);
56
57
58 #ifdef __cplusplus
59 };
60 #endif
61
62 #endif // __SETTINGS_H__