apicbt_createwnd.cls

来自「几个不错的VB例子」· CLS 代码 · 共 69 行

CLS
69
字号
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
END
Attribute VB_Name = "ApiCBT_CREATEWND"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Option Explicit

' ##MODULE_DESCRIPTION This class is used when a CBT Hook is installed _
  and a window is created by the process being hooked, in order to _
  get information about that new window

Private Type CBT_CREATEWND
    csThis As Long '\\ Pointer to CREATESTRUCT
    hWndInsertAfter As Long
End Type


Public csThis As ApiCreateStruct
Public hWndInsertAfter As Long

Public CreatedOK As Boolean

'\\ Private memory handling functions
Private Declare Sub CopyMemoryCBT_CreateWnd Lib "kernel32" Alias "RtlMoveMemory" (Destination As CBT_CREATEWND, ByVal Source As Long, ByVal Length As Long)
Private Declare Function IsBadReadPtrCBT_CreateWnd Lib "kernel32" Alias "IsBadReadPtr" (ByVal lp As Long, ByVal ucb As Long) As Long
Private Declare Function IsBadWritePtrCBT_CreateWnd Lib "kernel32" Alias "IsBadWritePtr" (ByVal lp As Long, ByVal ucb As Long) As Long

'\\ --[CreateFromPointer]---------------------------------------------
'\\ Fills this CBT_CreateWnd object from the location poiunted to by
'\\ lpCBT_CreateWnd
'\\ VB.NET Porting note: This function should be replaced with an override
'\\ of the New() for correctness
'\\ ----------------------------------------------------------------------------------------
'\\ (c) 2001 - Merrion Computing.  All rights  to use, reproduce or publish this code reserved
'\\ Please check http://www.merrioncomputing.com for updates.
'\\ ----------------------------------------------------------------------------------------
Friend Function CreateFromPointer(lpCBT_CreateWnd As Long) As Boolean

Dim ftThis As CBT_CREATEWND

CreatedOK = False

If Not IsBadReadPtrCBT_CreateWnd(lpCBT_CreateWnd, Len(ftThis)) Then
    Call CopyMemoryCBT_CreateWnd(ftThis, lpCBT_CreateWnd, Len(ftThis))
    If Err.LastDllError = 0 Then
        With ftThis
            hWndInsertAfter = .hWndInsertAfter
            Set csThis = New ApiCreateStruct
            If Not csThis.CreateFromPointer(.csThis) Then
                Set csThis = Nothing
            Else
                If Err.LastDllError = 0 Then
                    CreatedOK = True
                End If
            End If
        End With
    End If
End If

CreateFromPointer = CreatedOK

End Function

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?