How to use pragma to link to User32.lib to use C-API functions of User32.dll in C++ Win32 API

1 Answer

0 votes
#include <windows.h>

#pragma comment(lib, "user32.lib")

int main()
{
	MessageBox(nullptr, L"Some Text", L"Title", MB_OK); 
	
	return 0;
}


/*

Some Text

*/

 



answered Sep 22, 2024 by avibootz

Related questions

...