This commit is contained in:
Alfie King
2024-06-20 15:11:55 +01:00
parent 07c2db22f0
commit 9a6d9fcad7
22 changed files with 4051 additions and 3 deletions
+26
View File
@@ -0,0 +1,26 @@
// Clip Library
// Copyright (c) 2024 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef CLIP_WIN_H_INCLUDED
#define CLIP_WIN_H_INCLUDED
#pragma once
#include <windows.h>
#ifndef LCS_WINDOWS_COLOR_SPACE
#define LCS_WINDOWS_COLOR_SPACE 'Win '
#endif
#ifndef CF_DIBV5
#define CF_DIBV5 17
#endif
#if CLIP_ENABLE_IMAGE
#include "clip_win_bmp.h"
#include "clip_win_wic.h"
#endif
#endif // CLIP_WIN_H_INCLUDED