These are samples which use some basic Win32 API.  To build each
of the samples follow these steps.

1) Make sure your environment points to the 32bit targetting libs,
includes, and tools binaries (this can be done by running the
sdkenv.bat generated by install.bat).

2) cd to <project dir >

3) nmake -f <projectdir>.mak  some of the samples make use of
DLLs.  In these cases it may be necessary to build the DLL first,
which will produce an import library. (e.g. mltithrd - first
build tlsdll).


4) To build .sym files for 32 bit exe's, use mapsympe.  This has
not been integrated into the makefile process.

5) To build "release" version of samples (change in optimization
and no debug info) use DEBUG=0 on the nmake command line.  For
example:

    nmake DEBUG=0 notepad.mak

6) Currently, this release of the samples includes kernel32.lib
on the LFLAGS line.  This is not necessary for your own makefiles
since the C runtime libs have directives for including KERNEL32.LIB


Exceptions:

The following are samples which currently have limited functionality.


1) multipad - printer setup under multipad is not enabled.

2) console - we are currently looking into a potential
problem with GetConsoleTitle after running he AllocConsole option.

3) owncombo - there is a problem that we are currently researching in
conjunction with list and combo boxes.  List and combo boxes that do
not have the WS_VSCROLL style will not scroll properly.  That is, when
the left mouse button is held down and the mouse is dragged up above
the top of the list or combo box, it will scroll past the first item
in the list or combo box.  This problem does not occur with list and
combo boxes with WS_VSCROLL set.

