Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Determine which library contains function

Aug
1,916
68
Code:
:: WHICHLIB.BTM
:: A simple way to find in which library a function is located.
::
@setlocal
@echo off
:: Assume that library files are located in _startpath\library
cd %_startpath\library
:: Assume that library files have the extension .library
ffind /v/m/t"%1 {" *.library
if %_ffind_matches lt 1 echo Could not find function %1 in any library
endlocal
 
Back
Top