Thread overview
MAKELCID C++ translation
May 05, 2017
Mike B Johnson
May 05, 2017
Adam D. Ruppe
May 06, 2017
Mike B Johnson
May 05, 2017
How to translate something like?

#define LCID_ENGLISH MAKELCID(MAKELANGID(0x09, 0x01), SORT_DEFAULT)
#define LCID_GERMAN  MAKELCID(MAKELANGID(0x07, 0x01), SORT_DEFAULT)

D seems to be missing these macros and definitions
May 05, 2017
On Friday, 5 May 2017 at 22:57:50 UTC, Mike B Johnson wrote:
> D seems to be missing these macros and definitions

import core.sys.windows.winnt;

then they should work
May 06, 2017
On Friday, 5 May 2017 at 23:02:53 UTC, Adam D. Ruppe wrote:
> On Friday, 5 May 2017 at 22:57:50 UTC, Mike B Johnson wrote:
>> D seems to be missing these macros and definitions
>
> import core.sys.windows.winnt;
>
> then they should work


thanks.