Files

19 lines
446 B
C
Raw Permalink Normal View History

2021-10-19 21:27:23 +01:00
// Common/ListFileUtils.h
2023-09-24 03:13:03 +01:00
#ifndef ZIP7_INC_COMMON_LIST_FILE_UTILS_H
#define ZIP7_INC_COMMON_LIST_FILE_UTILS_H
2021-10-19 21:27:23 +01:00
#include "MyString.h"
#include "MyTypes.h"
2023-09-24 03:13:03 +01:00
#define Z7_WIN_CP_UTF16 1200
#define Z7_WIN_CP_UTF16BE 1201
2021-10-19 21:27:23 +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