Exemplo n.º 1
0
        private void ButtonCloseHandle_Click(object sender, RoutedEventArgs e)
        {
            if (listboxRemoteThreads.SelectedItem != null)
            {
                uint handle = ((RemoteThread)listboxRemoteThreads.SelectedItem).Handle;
                TrashMem.TerminateThread((RemoteThread)listboxRemoteThreads.SelectedItem, 0x1);

                UpdateAllocationsAndThreads();
            }
        }