Missing constants and structures

Started by jdoe, April 30, 2006, 06:43:39 AM

Previous topic - Next topic

jdoe

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