WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

WIL Extenders
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

Get List of Loaded Extender Functions


; Get list of loaded Extender Functions

;Load any Extender
AddExtender( 'wproc44i.dll' )

;Get table of Extender Functions
delimiter = Num2Char( 255 )
dlmtdfunctions  =  IntControl(77, 102, 0, 0, 0)
; Parse thru table build list with just function names
count = ItemCount( dlmtdfunctions, @TAB )
list = ''
For X = 1 To count
    item = ItemExtract( x, dlmtdfunctions, @TAB )
    function = ItemExtract( 6, item, delimiter )
    list = list : @TAB : function
Next
list = StrTrim( list )
; Display list of functions
AskItemlist( 'List of loaded Extender functions', list, @TAB, @SORTED, @SINGLE )

Exit

Article ID:   W17361
File Created: 2011:09:14:13:40:04
Last Updated: 2011:09:14:13:40:04