WindowsAPI笔记(二)---动手写第一个Windows程序
摘要:
#include <windows.h>
#include <iostream>
#include <stdio.h>
using namespace std; const string ProgramTitle = "Hello Windows"; LRESULT CALLBACK WinProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{ string text = "Hello Windows!"; switch (message) { cas 阅读全文
posted @ 2013-02-12 23:26 电子幼体 阅读(300) 评论(0) 推荐(0) 编辑