📄 modfuntion.bas
字号:
Attribute VB_Name = "ModFuntion"
Option Explicit
Public Type ThreadParam
lTlsIndex As Long
lpTlsValue As Long
lpProcess As mThreadControl
lpParam As Long
End Type
Private Declare Function TlsSetValue Lib "kernel32" (ByVal dwTlsIndex As Long, lpTlsValue As Any) As Long
Public Sub RunThread(lpParam As ThreadParam)
TlsSetValue lpParam.lTlsIndex, ByVal lpParam.lpTlsValue
lpParam.lpProcess.RunThread____ (lpParam.lpParam)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -