7zip/CPP/Windows/NationalTime.h

21 lines
455 B
C
Raw Permalink Normal View History

2021-12-27 01:00:00 +01:00
// Windows/NationalTime.h
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_WINDOWS_NATIONAL_TIME_H
#define ZIP7_INC_WINDOWS_NATIONAL_TIME_H
2021-12-27 01:00:00 +01:00
#include "../Common/MyString.h"
namespace NWindows {
namespace NNational {
namespace NTime {
bool MyGetTimeFormat(LCID locale, DWORD flags, CONST SYSTEMTIME *time,
LPCTSTR format, CSysString &resultString);
bool MyGetDateFormat(LCID locale, DWORD flags, CONST SYSTEMTIME *time,
LPCTSTR format, CSysString &resultString);
}}}
#endif