|
|
|
|
|
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(LIST_App, ExeListProcess(exePID, exeShortName))
AppInfo is string = LIST_App[LIST_App]
AppID is string = ExtractString(AppInfo, 1)
ListAdd(LIST_DLL, ExeListDLL(Val(AppID)))
Sintaxis
<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. Observaciones 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.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|