home *** CD-ROM | disk | FTP | other *** search
- Declare Function MhEnumChildWindows Lib "mhcb200.vbx" (ByVal hwnd As Integer, ByVal elements As Integer, hwndarray%) As Integer
-
- Declare Function MhEnumClipboardFormats Lib "mhcb200.vbx" (ByVal hwnd As Integer, ByVal elements As Integer, formatarray%) As Integer
- Global Const CF_TEXT = 1
- Global Const CF_BITMAP = 2
- Global Const CF_METAFILEPICT = 3
- Global Const SYLK = 4
- Global Const DIF = 5
- Global Const TIFF = 6
- Global Const CF_OEMTEXT = 7
- Global Const CF_DIB = 8
- Global Const PALETTE = 9
- Global Const PENDATA = 10
- Global Const RIFF = 11
- Global Const WAVE = 12
-
- Type MhLogFontType
- FontHeight As Integer
- FontWidth As Integer
- FontEscapement As Integer
- FontOrientation As Integer
- FontWeight As Integer
- FontItalic As String * 1
- FontUnderline As String * 1
- FontStrikeout As String * 1
- FontCharSet As String * 1
- FontOutPrecision As String * 1
- FontClipPrecision As String * 1
- FontQuality As String * 1
- FontPitchAndFamily As String * 1
- FontFaceName As String * 32
- End Type
-
- Global LOGFONT(100) As MhLogFontType
- Declare Function MhEnumFonts Lib "mhcb200.vbx" (ByVal hdc As Integer, ByVal elements As Integer, hwndarray As MhLogFontType) As Integer
-
-
-