mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
19 lines
No EOL
446 B
C++
19 lines
No EOL
446 B
C++
#pragma once
|
|
|
|
#include "../../Core/Debugger/DebugInterface.h"
|
|
#include "../../Core/HLE/sceKernelThread.h"
|
|
|
|
class CtrlThreadList
|
|
{
|
|
HWND wnd;
|
|
WNDPROC oldProc;
|
|
std::vector<DebugThreadInfo> threads;
|
|
char stringBuffer[256];
|
|
|
|
public:
|
|
void setDialogItem(HWND hwnd);
|
|
void reloadThreads();
|
|
void handleNotify(LPARAM lParam);
|
|
static LRESULT CALLBACK wndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
|
const char* getCurrentThreadName();
|
|
}; |