Differences From Artifact [109289fec72a32d4]:
- File
src/windll.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 [bbb6d5827e2268a2]:
- File
src/windll.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 win32.windows; | 1 import win32.windows;
2 private import std.string; | 2 import std.string;
3 3
4 class WinDLLException : Exception 4 class WinDLLException : Exception
5 { 5 {
6 private this( string msg ) { super(msg); } 6 private this( string msg ) { super(msg); }
7 } 7 }
8 8
9 class WinDLL 9 class WinDLL