Package com.sun.jna.platform.win32
Schnittstelle WinBase.EnumResNameProc
- Alle Superschnittstellen:
Callback
- Umschließende Schnittstelle:
WinBase
An application-defined callback function used with the EnumResourceNames
and EnumResourceNamesEx functions.
It receives the type and name of a resource.
The ENUMRESNAMEPROC type defines a pointer to this callback function.
EnumResNameProc is a placeholder for the application-defined function name.
It receives the type and name of a resource.
The ENUMRESNAMEPROC type defines a pointer to this callback function.
EnumResNameProc is a placeholder for the application-defined function name.
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen com.sun.jna.Callback
Callback.UncaughtExceptionHandler
-
Feldübersicht
Von Schnittstelle geerbte Felder com.sun.jna.Callback
FORBIDDEN_NAMES, METHOD_NAME
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
invoke
(WinDef.HMODULE module, Pointer type, Pointer name, Pointer lParam)
-
Methodendetails
-
invoke
- Parameter:
module
- A handle to the module whose executable file contains the resources that are being enumerated.
If this parameter is NULL, the function enumerates the resource names in the module used to create the current process.type
- The type of resource for which the name is being enumerated.
Alternately, rather than a pointer, this parameter can beMAKEINTRESOURCE(ID)
, where ID is an integer value representing a predefined resource type.
For standard resource types, see Resource Types.
For more information, see the Remarks section below.name
- The name of a resource of the type being enumerated.
Alternately, rather than a pointer, this parameter can beMAKEINTRESOURCE(ID)
, where ID is the integer identifier of the resource.
For more information, see the Remarks section below.lParam
- An application-defined parameter passed to the EnumResourceNames or EnumResourceNamesEx function.
This parameter can be used in error checking.- Gibt zurück:
- Returns TRUE to continue enumeration or FALSE to stop enumeration.
-