Method | Description | |
---|---|---|
LoadLibraryEx ( string lpfFileName, LoadLibraryExFlags flags ) : |
The LoadLibraryEx function maps the specified executable module into the address space of the calling process. The executable module can be a .dll or an .exe file. The specified module may cause other modules to be mapped into the address space
|
|
SendMessage ( |
The SendMessage function sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message
|
|
SetErrorMode ( SetErrorModeFlags uMode ) : int |
The SetErrorMode function controls whether the system will handle the specified types of serious errors, or whether the process will handle them
|
Method | Description | |
---|---|---|
CopyMemory ( |
||
CreateIconFromResourceEx ( byte pbIconBits, int cbIconBits, bool fIcon, int dwVersion, int csDesired, int cyDesired, int flags ) : |
||
DeleteObject ( |
||
DllGetVersion ( |
||
DrawText ( |
||
FindResource ( |
||
FindResource ( |
||
FreeLibrary ( |
||
FreeResource ( |
||
GdiFlush ( ) : int | ||
GetDC ( |
||
GetDeviceCaps ( |
||
GetProcAddress ( |
||
GetSystemMetrics ( int nIndex ) : int | ||
InternalLoadLibraryEx ( string lpfFileName, |
||
InternalSendMessage ( |
||
InternalSetErrorMode ( int uMode ) : int | ||
LoadBitmap ( |
||
LoadBitmap ( |
||
LoadLibrary ( string lpFileName ) : |
||
LoadResource ( |
||
LoadString ( |
||
ReleaseDC ( |
||
SelectObject ( |
||
SetBkMode ( |
||
SetTextColor ( |
||
SizeofResource ( |
public static LoadLibraryEx ( string lpfFileName, LoadLibraryExFlags flags ) : |
||
lpfFileName | string | Pointer to a null-terminated string that names /// the executable module (either a .dll or an .exe file). The name specified /// is the file name of the executable module. This name is not related to the /// name stored in a library module itself, as specified by the LIBRARY keyword /// in the module-definition (.def) file. If the string specifies a path, but /// the file does not exist in the specified directory, the function fails. When /// specifying a path, be sure to use backslashes (\), not forward slashes (/). /// If the string does not specify a path, and the file name extension is omitted, /// the function appends the default library extension .dll to the file name. /// However, the file name string can include a trailing point character (.) to /// indicate that the module name has no extension. If the string does not specify /// a path, the function uses a standard search strategy to find the file. If /// mapping the specified module into the address space causes the system to map /// in other, associated executable modules, the function can use either the /// standard search strategy or an alternate search strategy to find those modules. |
flags | LoadLibraryExFlags | Action to take when loading the module. If no flags are /// specified, the behavior of this function is identical to that of the LoadLibrary /// function. This parameter can be one of the LoadLibraryExFlags values |
return |
public static SendMessage ( |
||
hwnd | Handle to the window whose window procedure will /// receive the message | |
msg | WindowMessageFlags | Specifies the message to be sent |
wParam | Specifies additional message-specific information | |
lParam | Specifies additional message-specific information | |
return | int |
public static SetErrorMode ( SetErrorModeFlags uMode ) : int | ||
uMode | SetErrorModeFlags | Process error mode. This parameter can be one or more of /// the SetErrorModeFlags values |
return | int |