Пример #1
0
        public static ISDbgBootstrapper GetBoostrapper()
        {
            ISDbgBootstrapper bootstrapper = null;

            if (Environment.Is64BitProcess)
            {
                CreateBootstrapper_x64(out bootstrapper);
            }
            else
            {
                CreateBootstrapper_x86(out bootstrapper);
            }
            return(bootstrapper);
        }
Пример #2
0
 private static extern void CreateBootstrapper_x64([MarshalAs(UnmanagedType.Interface)] out ISDbgBootstrapper bootstrapper);