Visual Studio 2019 Community使用
こちらの記事を参考にし、GdiPlus.dllのパスを通し、#include <gdiplus.h>も行ったたものの、表題の通りのエラーがでており、ビルドが通らず、困っています。
コード上では、赤い波線でのエラーは検知されておらず、GdiPlusは認知されていると私は解釈しておりますが、どうすればビルドが通りますか。
using namespace Gdiplus;近辺のコードは、下記の通りです。
C++
1// Project1.cpp : アプリケーションのエントリ ポイントを定義します。 2// 3 4#include <objbase.h> 5#include <gdiplus.h> 6#include "pch.h" 7#include "framework.h" 8#include "Project1.h" 9 10#include <stdio.h> 11#include <locale.h> 12#include <stdlib.h> 13#include <iostream> 14#include <io.h> 15 16#define MAX_LOADSTRING 100 17 18using namespace Gdiplus; 19 20GdiplusStartupInput gdiSI; 21ULONG_PTR gdiToken;
回答1件
あなたの回答
tips
プレビュー