mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00

Don't derive quad from triplet, but make it a standalone type with just 4 members. Note: additional dummy operators are needed for the color transforms. This is required for the current template design. HP never defined the (non-standard JPEG-LS) color transformation for anything else then 3 components.
35 lines
964 B
Plaintext
35 lines
964 B
Plaintext
// Copyright (c) Team CharLS.
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//
|
|
// cpp.hint: What is this thing?
|
|
//
|
|
// This file is used solely to aid Visual Studio Intellisense while editing.
|
|
// It is not used as part of any build. See Microsoft docs for more info about this file.
|
|
//
|
|
|
|
#define CHARLS_API_IMPORT_EXPORT
|
|
#define CHARLS_API_CALLING_CONVENTION
|
|
#define CHARLS_FINAL final
|
|
#define CHARLS_NOEXCEPT
|
|
#define CHARLS_NO_INLINE
|
|
#define FORCE_INLINE
|
|
#define MSVC_WARNING_SUPPRESS_NEXT_LINE(x)
|
|
#define CHARLS_IN
|
|
#define CHARLS_IN_OPT
|
|
#define CHARLS_IN_Z
|
|
#define CHARLS_IN_READS_BYTES(size)
|
|
#define CHARLS_OUT
|
|
#define CHARLS_OUT_OPT
|
|
#define CHARLS_OUT_WRITES_BYTES(size)
|
|
#define CHARLS_OUT_WRITES_Z(size_in_bytes)
|
|
#define CHARLS_RETURN_TYPE_SUCCESS(expr)
|
|
#define CHARLS_ATTRIBUTE(a)
|
|
#define CHARLS_ATTRIBUTE_ACCESS(a)
|
|
#define CHARLS_C_VOID
|
|
#define CHARLS_CHECK_RETURN
|
|
#define CHARLS_RET_MAY_BE_NULL
|
|
#define USE_DECL_ANNOTATIONS
|
|
#define ASSERT(x)
|
|
#define UNLIKELY(x)
|