00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __EXTRACT_MODE_H 00006 #define __EXTRACT_MODE_H 00007 00008 namespace NExtract { 00009 00010 namespace NPathMode 00011 { 00012 enum EEnum 00013 { 00014 kFullPathnames, 00015 kCurrentPathnames, 00016 kNoPathnames 00017 }; 00018 } 00019 00020 namespace NOverwriteMode 00021 { 00022 enum EEnum 00023 { 00024 kAskBefore, 00025 kWithoutPrompt, 00026 kSkipExisting, 00027 kAutoRename, 00028 kAutoRenameExisting 00029 }; 00030 } 00031 } 00032 00033 #endif
1.5.6