Home > Back-end >  C language for help
C language for help

Time:03-19

Can you help to take a look at this how to change?

CodePudding user response:

FindWindow code?

Stick a picture is more convenient, but also need the related code, or directly send the source code, if not a secret

CodePudding user response:

FindWindow is a Win32 API, declared as a
 
WINUSERAPI
HWND
WINAPI
FindWindowA (
_In_opt_ LPCSTR lpClassName,
_In_opt_ LPCSTR lpWindowName);
WINUSERAPI
HWND
WINAPI
FindWindowW (
_In_opt_ LPCWSTR lpClassName,
_In_opt_ LPCWSTR lpWindowName);
  • Related