Installation & Setup
MASM for 32bit assembler
Download and install the MASM32 package.
Download the 32bit version of the FileDialog Library: FileDialog-x86.zip
Copy the
FileDialog.incfile toX:\MASM32\Includefolder overwriting any previous versions.Copy the
FileDialog.libfile toX:\MASM32\Libfolder overwriting any previous versions.
Note
X is the drive letter where the MASM32 package has been installed to.
Adding FileDialog Library to your MASM project
You are now ready to begin using the FileDialog library in your Masm projects. Simply add the following lines to your project:
include FileDialog.inc
includelib FileDialog.lib
UASM for 64bit assembler
Download and install the UASM assembler. Ideally you will have a setup that mimics the MASM32 setup, where you create manually folders for
bin,includeandlibDownload the 64bit version of the FileDialog Library: FileDialog-x64.zip
Copy the
FileDialog.incfile toX:\UASM\Includefolder overwriting any previous versions.Copy the
FileDialog.libfile toX:\UASM\Lib\x64folder overwriting any previous versions.
Note
X is the drive letter where the UASM package has been installed to.
Adding FileDialog Library to your UASM project
You are now ready to begin using the FileDialog library in your Uasm projects. Simply add the following lines to your project:
include FileDialog.inc
includelib FileDialog.lib
Note
See the following for more details on setting up UASM to work with RadASM and other details that may be useful in creating a development environment that mimics the MASM32 SDK: UASM-with-RadASM, UASM-SDK
Tip
UASM can be used as a x86 32 bit assembler as well.