Joke Collection Website - Public benefit messages - Vb short message

Vb short message

# include & ltwindows.h & gt

int WINAPI WinMain(h instance h instance,HINSTANCE hPrev,LPWSTR CmdLine,int nCmd)

{

MessageBox(NULL, TEXT ("My first PPC program! "), TEXT ("first "), MB _ OK | MB _ iconinformation);

Returns 0;

}

My first PPC program, hehe.

In the subroutine, you can see that the declaration of WinMain function is a little different from that of Windows SDK (you have to look carefully to see it ~), and another point is that the string must be in TEXT (), hehe, everything else is similar. In fact, EVC is as fast as MFC to VC.

Maybe everyone will be a little inspired when they read it.