(IntPtr hModule, string procName)
| 67 | static extern IntPtr LoadLibrary([MarshalAs(UnmanagedType.LPStr)] string lpFileName); |
| 68 | |
| 69 | [DllImport("kernel32", CharSet = CharSet.Ansi, ExactSpelling = true, SetLastError = true)] |
| 70 | static extern IntPtr GetProcAddress(IntPtr hModule, string procName); |
| 71 | |
| 72 | [DllImport("kernel32", SetLastError = true, CharSet = CharSet.Ansi)] |
| 73 | static extern int FreeLibrary(IntPtr handle); |
nothing calls this directly
no outgoing calls
no test coverage detected