1 // Common/ListFileUtils.h 2 3 #ifndef ZIP7_INC_COMMON_LIST_FILE_UTILS_H 4 #define ZIP7_INC_COMMON_LIST_FILE_UTILS_H 5 6 #include "MyString.h" 7 #include "MyTypes.h" 8 9 #define Z7_WIN_CP_UTF16 1200 10 #define Z7_WIN_CP_UTF16BE 1201 11 12 // bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP); 13 14 // = CP_OEMCP 15 bool ReadNamesFromListFile2(CFSTR fileName, UStringVector &strings, UINT codePage, 16 DWORD &lastError); 17 18 #endif 19