2 changes: 2 additions & 0 deletions src/core/sys/windows/winbase.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.winbase;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "kernel32");

/**
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/wincon.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.wincon;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "kernel32");

private import core.sys.windows.w32api, core.sys.windows.windef;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/wincrypt.d
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
module core.sys.windows.wincrypt;
version (Windows):

version (ANSI) {} else version = Unicode;

private import core.sys.windows.w32api, core.sys.windows.winbase, core.sys.windows.windef;

/* FIXME:
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/wingdi.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.wingdi;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "gdi32");

// FIXME: clean up Windows version support
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/wininet.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.wininet;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "wininet");

// FIXME: check types and grouping of constants
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winldap.d
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
module core.sys.windows.winldap;
version (Windows):

version (ANSI) {} else version = Unicode;

/* Comment from MinGW
winldap.h - Header file for the Windows LDAP API
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winnetwk.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.winnetwk;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "mpr");

private import core.sys.windows.winbase, core.sys.windows.winerror, core.sys.windows.winnt;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winnls.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.winnls;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "kernel32");

private import core.sys.windows.basetsd, core.sys.windows.w32api, core.sys.windows.winbase, core.sys.windows.windef;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winnt.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
module core.sys.windows.winnt;
version (Windows):

version (ANSI) {} else version = Unicode;

public import core.sys.windows.basetsd, core.sys.windows.windef, core.sys.windows.winerror;
private import core.sys.windows.w32api;

Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winreg.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.winreg;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "advapi32");

private import core.sys.windows.w32api, core.sys.windows.winbase, core.sys.windows.windef;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winspool.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.winspool;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "winspool");

private import core.sys.windows.w32api, core.sys.windows.windef, core.sys.windows.wingdi;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winsvc.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.winsvc;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "advapi32");

private import core.sys.windows.w32api, core.sys.windows.windef;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winuser.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.winuser;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "user32");

// Conversion Notes:
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/winver.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
module core.sys.windows.winver;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "version");

private import core.sys.windows.windef;
Expand Down
2 changes: 2 additions & 0 deletions src/core/sys/windows/wtsapi32.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
module core.sys.windows.wtsapi32;
version (Windows):

version (ANSI) {} else version = Unicode;
pragma(lib, "wtsapi32");
private import core.sys.windows.w32api;
import core.sys.windows.windef;
Expand Down