dfl icon indicating copy to clipboard operation
dfl copied to clipboard

This unofficial project for D2.x is a migration of D Forms Library (DFL) that is managed on SVN. DFL is a Win32 windowing library for the D programming language. We support only D2 HEAD.

Results 12 dfl issues
Sort by recently updated
recently updated
newest added

This includes Pull #51, #50, #49, #48, #45. It also addresses issues DMD 2.072 removing std.stream (By bring the file into internal). DFL users, I will try to keep my...

This make DFL build with DMD 2.071. The main change is that DMD now comes with more complete header files and DFL does not need to supply the definitions anymore.

# Win64 support Note: This depends on #49 COFF Format Support. ## Goal 1. Minimal patches. 2. No breaking change to win32 programs. ## Limitations 1. Win64-support by DMD requires...

DMD 2.069 can make 32-bit COFF binary and have runtime libraries. So, I fix DFL's toolchains, which are dfl.exe and makeXX.bat files. ## Usage > cd dflexe > makedflexe.bat dfl.exe...

small fix of DFLEXE for @ safe This may be required by the other PR's of COFF.

Modify the win32/base.d for D2.065 Add the new folder win64 for test,it come from win32,and modify :set int =cast(int)size_t.

This patch is to fix a bug that Win64 DFL64 program will crash if it uses treeview icon.

This request fixes errors caused by dmd disruptive changes.

Test-case: ``` D module test; pragma(lib, "Ole32"); import std.exception; import dfl.internal.wincom; void main() { enforce(!CoInitialize(null)); scope(exit) CoUninitialize(); } ``` `$ rdmd --force -m32 -I.. test.d` The above works. But the...