MeshLib C Docs
Loading...
Searching...
No Matches
MRMeshFwd.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMisc/exports.h>
4
5#include <stddef.h>
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11
13typedef struct MR_NoInit MR_NoInit;
14
18
23
25MRC_API const MR_NoInit *MR_NoInit_OffsetPtr(const MR_NoInit *ptr, ptrdiff_t i);
26
29
34
37
40
46
47#ifdef __cplusplus
48} // extern "C"
49#endif
struct MR_NoInit MR_NoInit
Definition MRBox.h:15
MRC_API MR_NoInit * MR_NoInit_DefaultConstructArray(size_t num_elems)
MRC_API void MR_NoInit_DestroyArray(const MR_NoInit *_this)
Destroys a heap-allocated array of MR_NoInit. Does nothing if the pointer is null.
MRC_API const MR_NoInit * MR_NoInit_OffsetPtr(const MR_NoInit *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
MRC_API MR_NoInit * MR_NoInit_OffsetMutablePtr(MR_NoInit *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
MRC_API MR_NoInit * MR_NoInit_DefaultConstruct(void)
MRC_API void MR_NoInit_Destroy(const MR_NoInit *_this)
Destroys a heap-allocated instance of MR_NoInit. Does nothing if the pointer is null.
MRC_API MR_NoInit * MR_NoInit_ConstructFromAnother(const MR_NoInit *_other)
MRC_API MR_NoInit * MR_NoInit_AssignFromAnother(MR_NoInit *_this, const MR_NoInit *_other)
#define MRC_API
Definition exports.h:11