In the "tools64" directory there are a number of tools that should be useful writing code with ML64.
1. bin2db64.exe
Convert any file into a compacted DB sequence so it can be written to disk from within an executable file. The main use I have had for this is storing icons and toolbars in code generators.
2. cvstrct.exe
Convert C structures into MASM format. It is not a perfect conversion but takes much of the hack work out of the task.
3. editmake.exe
A code generator that makes a basic editor application complete with toolbar and status bar. I use this tool for making other specialised tools that use an editor interface.
4. l2inc64.exe
A tool for creating ML64 format include files from existing libraries. You use it by placing it in a separate directory and specifying the path of another directory on the command line.
5. mangle64.exe
A tool to mangle text so it far harder to find in an executable file.
6. subclass64.exe
A tool for subclassing controls. Same interface as the 32 bit version but with a ML64 compatible output.
7. tmake.exe
A simple code generator that creates a bare window that you can write your own code in. It is mainly designed to take the hack work out of starting a window based app.