Hi!
I am just starting to learn windows programming and picked up my first book "programming Windows" 5th ediion by charles petzold to start from the very basics, but I got stuck at the 2nd program. This is a program from the bookand I tried to install it on VC++ 6. The program compiles fine but does not link and give me some error.
The program is:
The error that I get is :Code:/*----------------------------------------------------- SCRNSIZE.C -- Displays screen size in a message box (c) Charles Petzold, 1998 -----------------------------------------------------*/ #include <windows.h> #include <tchar.h> #include <stdio.h> int CDECL MessageBoxPrintf (TCHAR * szCaption, TCHAR * szFormat, ...) { TCHAR szBuffer [1024] ; va_list pArgList ; // The va_start macro (defined in STDARG.H) is usually equivalent to: // pArgList = (char *) &szFormat + sizeof (szFormat) ; va_start (pArgList, szFormat) ; // The last argument to wvsprintf points to the arguments _vsntprintf (szBuffer, sizeof (szBuffer) / sizeof (TCHAR), szFormat, pArgList) ; // The va_end macro just zeroes out pArgList for no good reason va_end (pArgList) ; return MessageBox (NULL, szBuffer, szCaption, 0) ; } int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { int cxScreen, cyScreen ; cxScreen = GetSystemMetrics (SM_CXSCREEN) ; cyScreen = GetSystemMetrics (SM_CYSCREEN) ; MessageBoxPrintf (TEXT ("ScrnSize"), TEXT ("The screen is %i pixels wide by %i pixels high."), cxScreen, cyScreen) ; return 0 ; }
Since I am still at the 2nd chapter of this book I am little confused on why this is not linkingCode:--------------------Configuration: ScrnSize - Win32 Debug-------------------- Linking... LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main Debug/ScrnSize.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. ScrnSize.exe - 2 error(s), 0 warning(s)
Also the I need a dumbed out version of how the variables cxScreen and cyScreen give there values to messagebox function or in otherwords I didn't understand what this line is doing :
"_vsntprintf (szBuffer, sizeof (szBuffer) / sizeof (TCHAR),
szFormat, pArgList) ;"
any help would be great !!!



LinkBack URL
About LinkBacks


