ソースを参照

Parameterize window name

Define another variable for window name.
master
コミット
2c1d8a82a2
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      src/main.c

+ 2
- 2
src/main.c ファイルの表示

@@ -4,7 +4,7 @@ LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PWSTR pCmdLine, int nCmdShow) {
LPCWSTR windowName = L"Window";
MSG msg;
HWND hwnd;
WNDCLASSW wc = {
@@ -21,7 +21,7 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
};

RegisterClassW(&wc);
hwnd = CreateWindowW(wc.lpszClassName, L"Window",
hwnd = CreateWindowW(wc.lpszClassName, windowName,
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
100, 100, 350, 250, NULL, NULL, hInstance, NULL);



読み込み中…
キャンセル
保存