(string pFileName, bool bDeleteExistingResources)
| 90 | internal static extern bool AttachConsole(int pid); |
| 91 | |
| 92 | [DllImport("Kernel32.dll", SetLastError=true)] |
| 93 | internal static extern IntPtr BeginUpdateResource(string pFileName, bool bDeleteExistingResources); |
| 94 | |
| 95 | [DllImport("Kernel32.dll", SetLastError=true)] |
| 96 | internal static extern bool UpdateResource(IntPtr handle, string pType, IntPtr pName, short language, [MarshalAs(UnmanagedType.LPArray)] byte[] pData, int dwSize); |
nothing calls this directly
no outgoing calls
no test coverage detected