Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NationalTime.h « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86e014bf9d4b7cfabf5200f9459053500835536a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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