Large-scale renaming of all Win32 functions and types to use the
standard Windows names.

diff --git a/include/progress.h b/include/progress.h
index fdd5415..7a1a721 100644
--- a/include/progress.h
+++ b/include/progress.h
@@ -11,13 +11,13 @@
 
 typedef struct
 {
-  INT32       CurVal;       /* Current progress value */
-  INT32       MinVal;       /* Minimum progress value */
-  INT32       MaxVal;       /* Maximum progress value */
-  INT32       Step;         /* Step to use on PMB_STEPIT */
+  INT       CurVal;       /* Current progress value */
+  INT       MinVal;       /* Minimum progress value */
+  INT       MaxVal;       /* Maximum progress value */
+  INT       Step;         /* Step to use on PMB_STEPIT */
   COLORREF    ColorBar;     /* Bar color */
   COLORREF    ColorBk;      /* Background color */
-  HFONT32     hFont;        /* Handle to font (not unused) */
+  HFONT     hFont;        /* Handle to font (not unused) */
 } PROGRESS_INFO;