File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2019-2023 Diligent Graphics LLC
2+ * Copyright 2019-2025 Diligent Graphics LLC
33 * Copyright 2015-2019 Egor Yusov
44 *
55 * Licensed under the Apache License, Version 2.0 (the "License");
2727
2828#pragma once
2929
30+ // / \file
31+ // / Defines basic types used in the engine
32+
3033#include " CommonDefinitions.h"
3134
3235#if DILIGENT_C_INTERFACE || defined(DILIGENT_SHARP_GEN)
@@ -51,9 +54,9 @@ typedef uint32_t Uint32; ///< 32-bit unsigned integer
5154typedef uint16_t Uint16; // /< 16-bit unsigned integer
5255typedef uint8_t Uint8; // /< 8-bit unsigned integer
5356
54- typedef size_t SizeType;
55- typedef void * PVoid;
56- typedef const void * CPVoid;
57+ typedef size_t SizeType; // /< Size type
58+ typedef void * PVoid; // /< Pointer to void
59+ typedef const void * CPVoid; // /< Pointer to const void
5760
5861typedef bool Bool; // /< Boolean
5962
You can’t perform that action at this time.
0 commit comments