/** * Helper module for the Windows API * * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC core/sys/windows/_core.d) */ /// Automatically imported and edited from the druntime module /// core.sys.windows.core for the auto-generated win32 package. module win32.core; //version (Windows): /** The core Windows API functions. Importing this file is equivalent to the C code: --- #define WIN32_LEAN_AND_MEAN #include "windows.h" --- */ public import win32.windef; public import win32.winnt; public import win32.wincon; public import win32.winbase; public import win32.wingdi; public import win32.winuser; public import win32.winnls; public import win32.winver; public import win32.winnetwk; public import win32.winsvc;