I have the following code:

Code:
#include "stdafx.h"

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
 	
	return 0;
}
Is it possible to show a Dialog based on this, or do I first have to write a Window Class for the "base window"???