2024-04-14から1日間の記事一覧

C++ウィンドウ表示など

#define _CRT_SECURE_NO_WARNINGS#include <Windows.h>#include <chrono>#include <ctime>#include <thread> constexpr int WINDOW_X = 10;constexpr int WINDOW_Y = 10; LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);void DisplayCurrentDateTime(HWND hwnd,</thread></ctime></chrono></windows.h>…

引数LPCWSTR型によるビルドエラー対策

そのエラーはconst wchar_t*型を渡すべきところに、const char*を渡しているというエラーです。Windows APIはワイド文字モードでビルドすると、多くの文字列はconst wchar_t*で受け取ります。マルチ・バイト文字モードでビルドするか、文字列をL"xxx"のよう…

_dos_finefirst()の代替関数(確定)

#include <io.h>#include <cstring> int main() { struct _finddata_t fileinfo; intptr_t handle; const char* filespec = "C:\\Users\\sannp\\Desktop\\SAMC1\\DAT\\data\\data?.dat"; // 検索するファイル名のパターンを指定 // 検索を開始 handle = _findfirst(filespec</cstring></io.h>…