The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: jdoe on April 30, 2006, 06:43:39 AM

Title: Missing constants and structures
Post by: jdoe on April 30, 2006, 06:43:39 AM
While coding my OpenSaveAs procedure, I notice that OFN_ENABLESIZING constant was missing from windows.inc


OFN_ENABLESIZING     equ 800000h


And also...


TYMED_HGLOBAL                     equ 1

CDN_INITDONE                      equ (CDN_FIRST-0)

FLASHWINFO struct
   cbSize                         dword ?
   hwnd                           dword ?
   dwFlags                        dword ?
   uCount                         dword ?
   dwTimeout                      dword ?
FLASHWINFO ends

FORMATETC struct dword
   cfFormat                       word ?
   ptd                            dword ?
   dwAspect                       dword ?
   lindex                         dword ?
   tymed                          dword ?
FORMATETC ends

STGMEDIUM struct dword
   tymed                          dword ?
   union
       hBitmap                    dword ?
       hMetaFilePict              dword ?
       hEnhMetaFile               dword ?
       hGlobal                    dword ?
       lpszFileName               dword ?
       pstm                       dword ?
       pstg                       dword ?
   ends
   pUnkForRelease                 dword ?
STGMEDIUM ends

OFNOTIFY struct
   hdr                            NMHDR <>
   lpOFN                          dword ?
   pszFile                        dword ?
OFNOTIFY ends