mdlMain.bas
资源名称:FindDiff.rar [点击查看]
上传用户:xxscled
上传日期:2022-05-30
资源大小:108k
文件大小:1k
源码类别:
其他智力游戏
开发平台:
Visual Basic
- Attribute VB_Name = "mdlMain"
- Option Explicit
- Public Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hWnd As Long, ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
- Public Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long) As Long
- Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
- Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
- Public Const LWA_COLORKEY = &H1
- Public Const LWA_ALPHA = &H2
- Public Const GWL_EXSTYLE = (-20)
- Public Const WS_EX_LAYERED = &H80000