Function: GetPluginInformation
Version 1.2+

Public Function GetPluginInformation(InfType As Integer) As String

GetPluginInformation is called when the user chooses the Add/Remove Plugins option from the Plug-ins menu. This asks the DLL for a name and a description. If InfType is set to 1, your function should return the name of the plug-in. If InfType is 2, return a short description.

Example

Public Function GetPluginInformation(InfType As Integer) As String
    If InfType = 1 Then ' Name
        GetPluginInformation = "Test Plugin"
    ElseIf InfType = 2 Then ' Description
        GetPluginInformation = "Simple test plug-in"
    End If
End Function