Вопрос How to fix this errors in Bhop code?

maybe, reinterpret_cast<LPTHREAD_START_ROUTINE>(BunnyHop()), // idk
or, (LPTHREAD_START_ROUTINE)BunnyHop // idk 2

1682253967278.png
 
I have some errors in code and dunno how to fix, anyone help?
Пожалуйста, авторизуйтесь для просмотра ссылки.
(clickable)
The function itself must have the DWORD type, the __stdcall convention, and take one parameter of type void*
Example:
Expand Collapse Copy
DWORD __stdcall Function( void* ThreadPointer ) {
...
}
More at
Пожалуйста, авторизуйтесь для просмотра ссылки.
 
Назад
Сверху Снизу