2021-12-27 01:00:00 +01:00
|
|
|
// Common/ListFileUtils.h
|
|
|
|
|
|
2023-06-21 02:00:00 +02:00
|
|
|
#ifndef ZIP7_INC_COMMON_LIST_FILE_UTILS_H
|
|
|
|
|
#define ZIP7_INC_COMMON_LIST_FILE_UTILS_H
|
2021-12-27 01:00:00 +01:00
|
|
|
|
|
|
|
|
#include "MyString.h"
|
|
|
|
|
#include "MyTypes.h"
|
|
|
|
|
|
2023-06-21 02:00:00 +02:00
|
|
|
#define Z7_WIN_CP_UTF16 1200
|
|
|
|
|
#define Z7_WIN_CP_UTF16BE 1201
|
2021-12-27 01:00:00 +01:00
|
|
|
|
|
|
|
|
// bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
|
|
|
|
|
|
|
|
|
|
// = CP_OEMCP
|
|
|
|
|
bool ReadNamesFromListFile2(CFSTR fileName, UStringVector &strings, UINT codePage,
|
|
|
|
|
DWORD &lastError);
|
|
|
|
|
|
|
|
|
|
#endif
|