(IntPtr handle)
| 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); |
| 74 | |
| 75 | [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] |
| 76 | struct SECPKG_FUNCTION_TABLE { |
nothing calls this directly
no outgoing calls
no test coverage detected