[DllImport("kernel32.dll")]
static extern IntPtr LoadLibraryEx(string lpFileName, IntPtr hFile,
uint dwFlags);
None.
None.
If you only want to load resources from the library, specify LOAD_LIBRARY_AS_DATAFILE as dwFlags. In this case, nothing is done to execute or prepare to execute the mapped file. Declare LOAD_LIBRARY_AS_DATAFILE as follows:
private const uint LOAD_LIBRARY_AS_DATAFILE = 0x00000002;
Please add some!
Do you know one? Please contribute it!