Attribute VB_Name = "PBAPIInterceptor"
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''
'' Paul Bunyan API Interceptor
''

''
'' PBAPIInterceptor.dll does all initialization upon loading - i.e. there is no exported API to be called.
''

Public Declare Function LoadLibraryA Lib "Kernel32" (ByVal strLib As String) As Long
Public Declare Function GetModuleHandleA Lib "Kernel32" (ByVal strLib As String) As Long
Public Declare Function FreeLibrary Lib "Kernel32" (hmod As Long) As Boolean

Public Sub InitPBAPIInterceptor()
    LoadLibraryA ("PBAPIInterceptor")
End Sub

Public Sub UninitPBAPIInterceptor()
    FreeLibrary GetModuleHandleA("PBAPIInterceptor")
End Sub
''
''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

