Fix warnings in cppkore

This commit is contained in:
Kawe Mazidjatari 2023-04-03 14:51:45 +02:00
parent a857403b9e
commit 40f065bc1d
3 changed files with 11 additions and 3 deletions

View File

@ -193,7 +193,7 @@ namespace Drawing
G->DrawPath(Pen, &Path);
}
inline Drawing::Image* ImageFromTgaData(const uint8_t* TgaData, const uint32_t TgaDataSize)
inline Drawing::Image* ImageFromTgaData(const uint8_t* TgaData, const uint32_t /*TgaDataSize*/)
{
#pragma pack(push, 1)
struct TgaHeader

View File

@ -1,5 +1,13 @@
#pragma once
#if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L)
//C++17 specific
#define SDK_HAS_CPP17 1
#define KORE_CONSTEXPR constexpr
#else
#define KORE_CONSTEXPR
#endif
// These are the base implementations of the Kore library and are required for everything
#include "ListBase.h"
#include "StringBase.h"
@ -7,7 +15,7 @@
#include "ImmutableStringBase.h"
// Data\* is used in several support classes so it will always be defined
#include "Pattern.h"
//#include "Pattern.h"
#include "SecureString.h"
// System\* is always included and used for organization

View File

@ -36,7 +36,7 @@ namespace Forms
static DialogResult Show(Control* Owner, const String& Text, const String& Caption, MessageBoxButtons Buttons, MessageBoxIcon Icon, MessageBoxDefaultButton DefaultButton, MessageBoxOptions Options);
// Sets user defined message box colors for Foreground, Background, and Dialog Bottom Strip.
static void SetMessageBoxColors(Drawing::Color Foreground = Drawing::Color::Black, Drawing::Color Background = Drawing::Color::White, Drawing::Color Bottom = Drawing::Color(240, 240, 240));
static void SetMessageBoxColors(Drawing::Color Foreground = (Gdiplus::ARGB)Drawing::Color::Black, Drawing::Color Background = (Gdiplus::ARGB)Drawing::Color::White, Drawing::Color Bottom = Drawing::Color(240, 240, 240));
private:
// Converts a native windows result to a dialog result