-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCustomHook.cls
More file actions
32 lines (28 loc) · 753 Bytes
/
CustomHook.cls
File metadata and controls
32 lines (28 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "ViFriend"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Public hWnd As Long
Public ID As String
Public Function ClosePlugin()
SendMessage "BYE"
End Function
Public Function Init(ByVal hWnd As Long)
Me.hWnd = hWnd
SendMessage "HELLO [VIPAD_" & GetVersionNumber & "]"
End Function
Public Function SendMessage(ByVal theData As String)
SendAppMessage hWnd, theData
End Function
Private Sub Class_Terminate()
ClosePlugin
End Sub