All Projects → AndrejMitrovic → DWinProgramming

AndrejMitrovic / DWinProgramming

Licence: other
A collection of D Win32 programming examples

Programming Languages

d
599 projects
Batchfile
5799 projects

DWinProgramming - D WinAPI programming

This is a collection of samples from Charles Petzold's Programming Windows book, translated into the D programming language. It also contains a small collection of other Windows API samples.

See examples.txt for a description of the samples.

This project has been created by Andrej Mitrovic. Project Homepage: https://github.com/AndrejMitrovic/DWinProgramming

Building Requirements

  • Windows 7 or newer.
  • Compiler: DMD v2.091. Other compilers (ldc, gdc) will be supported soon.

Building

Compile the build script:

$ make_build.bat

And then to build all samples via DMD call:

$ build.exe

To build only a single example, CD to its directory and run:

$ ..\..\..\build.exe filename.d (filename being the main file)

Other options are: clean, debug.

Optional Tools

  • HTOD: https://www.digitalmars.com/d/2.0/htod.html HTOD needs to be in your PATH. It's probably best to put it in the \DMD2\Windows\Bin directory.

  • Microsoft RC compiler and header files. Without these the build script will use precompiled .res files.

    Note: This is a big download, depending on what you select in the setup. Note: DigitalMars has a resource compiler, but it still requires header files. See the "Using Resources in D" Tutorial in the Links section.

    • Create the RCINCLUDES environment variable and add paths to the header files needed by the RC resource compiler. On an XP system these paths could be: C:\Program Files\Microsoft SDKs\Windows\v7.1\Include C:\Program Files\Microsoft Visual Studio 10.0\VC\include C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\include

      Typically the include paths for resource header files are different on each system, so you will have to adjust these.

    Note: The build script will attempt to find these default paths if you don't have RCINCLUDES already set up. Note: Setting up an environment variable might require you to log off and log on again before the build script can pick up the new changes.

  • The uncrustify executable bundled with UniversalIndentGUI could be outdated compared to the latest Uncrustify version. Please see the Uncrustify homepage in the Links section in this Readme to get the latest binary or to compile from source.

Contact

Please do not e-mail Charles Petzold about bugs in these examples, any bugs in these samples are entirely my fault. File bugs here: https://github.com/AndrejMitrovic/DWinProgramming/issues

Acknowledgments

Big Thanks to Charles Petzold for writing a great Windows API programming book and for allowing me to host these code samples online.

Contributors

Simen Endsjø tested the project on an x64 Win7 system and found several issues. Leonardo Maffi created a Python script that got rid of stray parens.

Thanks goes out to all contributors.

Licensing

All code examples copyright belongs to Charles Petzold. Also see the answer to the 3rd question here: https://www.charlespetzold.com/faq.html

Links

D2 Programming Language Homepage: https://dlang.org

Code samples of using Win32 API and Cairo: https://github.com/AndrejMitrovic/cairoDSamples

How to make extensionless files open in your editor in WinXP: https://perishablepress.com/press/2006/08/08/associate-extensionless-files-with-notepad/ Note: Also, make sure you hit the 'Open with' button and select your editor.

How to make extensionless files open in your editor in Windows 7 and Windows 8 (and probably XP): Run this in the command prompt: assoc .="No Extension" ftype "No Extension"="C:\path\to\your editor.exe" "%1" Also see https://superuser.com/a/13947/47065

Programming Windows Homepage: https://www.charlespetzold.com/pw5/

Programming Windows C Code Samples: https://www.charlespetzold.com/books.html (search for ProgWin5.zip)

Charles Petzold FAQ: https://www.charlespetzold.com/faq.html

Programming Windows Errata #1: https://www.computersciencelab.com/PetzoldErrata.htm

Programming Windows Errata #2: https://www.jasondoucette.com/books/pw5/pw5errata.html

MSDN GDI page: https://msdn.microsoft.com/en-us/library/dd145203%28v=vs.85%29.aspx

MSDN list of Windows APIs: https://msdn.microsoft.com/en-us/library/ff818516.aspx

Windows API bindings: https://dsource.org/projects/bindings/wiki/WindowsApi

RDMD: https://www.digitalmars.com/d/2.0/rdmd.html

RDMD@github: https://github.com/D-Programming-Language/tools

HTOD: https://www.digitalmars.com/d/2.0/htod.html

DDBG D Debugger: https://ddbg.mainia.de/doc.html

Uncrustify - Code Beautifier: https://sourceforge.net/projects/uncrustify/develop

UniversalIndentGUI - GUI Frontend for Code Beautifiers:

https://universalindent.sourceforge.net/

Using Resources in D Tutorial: https://prowiki.org/wiki4d/wiki.cgi?D__Tutorial/WindowsResources

Unicode Character Viewer: https://rishida.net/scripts/uniview/

Environment Variables: https://www.computerhope.com/issues/ch000549.htm

Environment Editor: https://www.rapidee.com/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].