Differences From Artifact [bcd83037acfbb1eb]:
- File
src/qbga32.d
- 2015-04-21 10:46:55 - part of checkin [4e2933c620] on branch trunk - Rebased to the latest verson dmd 2.067. Not yet verified the outcome. (user: kinaba) [annotate]
To Artifact [c2d888a3830db302]:
- File
src/qbga32.d
- 2015-04-30 23:29:51 - part of checkin [ab3b073ef6] on branch trunk - private import => import (since in the latest D it is the default.) (user: kinaba) [annotate]
1 -private import core.sys.windows.dll;
2 -private import win32.windows;
3 -private import win32.winuser;
4 -private import std.string;
5 -private import std.file;
6 -private import util;
7 -private import windll;
8 -private import bga_melter;
9 -private import qbga_gui;
1 +import core.sys.windows.dll;
2 +import win32.windows;
3 +import win32.winuser;
4 +import std.string;
5 +import std.file;
6 +import util;
7 +import windll;
8 +import bga_melter;
9 +import qbga_gui;
10 10
11 11 //----------------------------------------------------------------
12 12 // おきまりのDLL初期化ルーチン
13 13 //----------------------------------------------------------------
14 14
15 15 __gshared HINSTANCE g_hinst;
16 16