003
02.01.2006, 16:10 Uhr
-]Dr.LoLig[-
|
Hi!
sorry, ich benutze Visual Studio 2003 .Net
und hab folgenden Quellcode zum Anfang:
#define STRICT
#include "stdafx.h" #include "windows.h" #include "netzguggln(winAPI).h"
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
const char appname[] = "Wenn ichs wuesst!";
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { HWND hWnd; MSG msg; WNDCLASS wc;
wc.style = CS_HREDRAW | CS_VREDRAW; wc.lpfnWndProc = WndProc;
PS: Das mit der Quellcode -Formatierung ging irgendwie nicht |