Hi, can someone write me a code to use window MessageBoxA()
Just write a code display "Hi there" using window dll MessageBoxA()
I really confuse how to import dll staticlly.
Thanks
this is my code(not working)
int __cdecl MessageBoxA(int a,char *s1,char *s2,int b);
#include <stdio.h>
/* entry point */
int main(void)
{
MessageBoxA(0,"Hi there","Hi there",0);
return 0;
}