Method |
Description |
|
Calloc ( IntPtr size ) : IntPtr |
|
|
CopyMemory ( IntPtr destination, IntPtr source, IntPtr Length ) : void |
|
|
FreeLibrary ( IntPtr hModule ) : bool |
|
|
GetProcAddress ( IntPtr module, IntPtr ordinal ) : IntPtr |
|
|
GetProcAddress ( IntPtr module, string lpFileName ) : IntPtr |
|
|
LoadLibrary ( string lpFileName ) : IntPtr |
|
|
LocalAlloc ( uint flags, IntPtr size ) : IntPtr |
|
|
MemSet ( IntPtr dest, byte value, IntPtr length ) : IntPtr |
Helper function for implementing memset. Could be more efficient if we could P/Invoke or call some otherwise native code to do this. |
|
MoveMemory ( IntPtr dest, IntPtr src, IntPtr length ) : IntPtr |
|
|
RtlMoveMemory ( IntPtr Destination, IntPtr src, IntPtr length ) : void |
|
|
SetLastError ( int errorCode ) : void |
|
|
dlopen ( string filename, int flags ) : IntPtr |
|
|
dlsym ( IntPtr handle, string symbol ) : IntPtr |
|
|