([MarshalAs(UnmanagedType.LPStr)] string lpFileName)
| 64 | internal static extern uint AddSecurityPackage(string pszPackageName, SECURITY_PACKAGE_OPTIONS Options); |
| 65 | |
| 66 | [DllImport("kernel32", SetLastError = true, CharSet = CharSet.Ansi)] |
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected