mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
21 lines
436 B
C++
Executable File
21 lines
436 B
C++
Executable File
// Windows/NationalTime.h
|
|
|
|
#ifndef __WINDOWS_NATIONALTIME_H
|
|
#define __WINDOWS_NATIONALTIME_H
|
|
|
|
#include "Common/String.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
|