|
|
|
|
|
ExeListDLL (Function) In french: ExeListeDLL Returns the list of libraries (".DLL" files) used by one of the applications currently run. This application may correspond to a WINDEV, WINDEV Mobile or other application. Note: Only in-memory libraries are listed.
ListAdd(LISTE_Appli, ExeListProcess(exePID, exeShortName))
InfoAppli is string = LISTE_Appli[LISTE_Appli]
IDAppli is string = ExtraitChaîne(InfoAppli, 1)
ListAdd(LISTE_DLL, ExeListDLL(Val(IDAppli)))
Syntax
<Result> = ExeListDLL([<Application identifier>])
<Result>: Character string List of libraries (".DLL" files) used by the specified application in the following format:
<1° librairie> + RC + <2° librairie> + RC + ... + <N° librairie> Where <X Library> corresponds to the name and full path of library X. <Application identifier>: Optional Integer constant Identifier of the application to use. This identifier is returned by ExeListProcess.
If this parameter is not specified, <Result> will correspond to the list of libraries for the current process. Remarks ExeListDLL returns no error code. To determine if this function generated an error, use the ErrorOccurred variable. If an error occurs, you can get more details on the error with ErrorInfo.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|