mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix warnings in cppkore
This commit is contained in:
parent
a857403b9e
commit
40f065bc1d
@ -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
|
||||
|
10
r5dev/thirdparty/cppnet/cppkore/Kore.h
vendored
10
r5dev/thirdparty/cppnet/cppkore/Kore.h
vendored
@ -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
|
||||
|
2
r5dev/thirdparty/cppnet/cppkore/MessageBox.h
vendored
2
r5dev/thirdparty/cppnet/cppkore/MessageBox.h
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user