#include "stdafx.h"
#include "stdafx.h"
#include <windows.h>
#include <windowsx.h>
#include <iostream>
//#define WIN_INTERNAL
using namespace std;
int main(void)
{
HWND hWnd;
CreateWindow(
WS_VISIBLE|WS_POPUP, // 窗體模樣
"szClass", // 註冊的類別名
"MyWindow", // 窗體名稱
WS_VISIBLE|WS_POPUP,// 窗體模樣
0, // 水平 X 位置
0, // 垂直 Y 位置
320, // 窗體寬度
320, // 窗體高度
NULL, // 父窗體
NULL, // 指向功能表的句柄
//NULL, // 實例句柄
NULL // CREATESTRUCT 結構指針
);
ShowWindow(hWnd,SW_SHOW);
UpdateWindow(hWnd);
}
nCmdShow
要找內部定義 = =
找到了SW_SHOW這個= ="