Click or drag to resize
Xcalibur Systems LLC Logo

EventHelperLoadLibrary Method

Loads the specified module into the address space of the calling process. The specified module may cause other modules to be loaded.

LoadLibrary function


Namespace: Xcalibur.NativeMethods.V2.Events
Assembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax
[DllImportAttribute("user32.dll", CallingConvention = CallingConvention.StdCall, 
	CharSet = CharSet.Auto)]
public static IntPtr LoadLibrary(
	string filename
)

Parameters

filename  String
The name of the module. This can be either a library module (a .dll file) or an executable module (an .exe file). The name specified is the file name of the module and is not related to the name stored in the library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file. If the string specifies a full path, the function searches only that path for the module.

Return Value

IntPtr
See Also