MeshLib C Docs
Loading...
Searching...
No Matches
std_shared_ptr_void.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMisc/common.h>
4#include <MRCMisc/exports.h>
5
6#include <stddef.h>
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12typedef struct MR_std_shared_ptr_const_void MR_std_shared_ptr_const_void; // Defined in `#include <MRCMisc/std_shared_ptr_const_void.h>`.
13
14
18
22
27
31
35
38
41
44
47
51
57
61
65
70
75
76#ifdef __cplusplus
77} // extern "C"
78#endif
MR_PassBy
Definition common.h:23
#define MRC_API
Definition exports.h:11
struct MR_std_shared_ptr_const_void MR_std_shared_ptr_const_void
Definition std_shared_ptr_const_MR_Mesh.h:14
struct MR_std_shared_ptr_void MR_std_shared_ptr_void
Definition std_shared_ptr_const_void.h:12
MRC_API MR_std_shared_ptr_void * MR_std_shared_ptr_void_DefaultConstructArray(size_t num_elems)
MRC_API MR_std_shared_ptr_void * MR_std_shared_ptr_void_ConstructNonOwning(void *ptr)
MRC_API void MR_std_shared_ptr_void_AssignAliasing(MR_std_shared_ptr_void *_this, MR_PassBy ownership_pass_by, MR_std_shared_ptr_const_void *ownership, void *ptr)
MRC_API void MR_std_shared_ptr_void_Destroy(const MR_std_shared_ptr_void *_this)
Destroys a heap-allocated instance of MR_std_shared_ptr_void. Does nothing if the pointer is null.
MRC_API MR_std_shared_ptr_void * MR_std_shared_ptr_void_ConstructAliasing(MR_PassBy ownership_pass_by, MR_std_shared_ptr_const_void *ownership, void *ptr)
MRC_API void * MR_std_shared_ptr_void_Get(const MR_std_shared_ptr_void *_this)
MRC_API void MR_std_shared_ptr_void_AssignFromAnother(MR_std_shared_ptr_void *_this, MR_PassBy other_pass_by, MR_std_shared_ptr_void *other)
MRC_API const MR_std_shared_ptr_void * MR_std_shared_ptr_void_OffsetPtr(const MR_std_shared_ptr_void *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_std_shared_ptr_void * MR_std_shared_ptr_void_OffsetMutablePtr(MR_std_shared_ptr_void *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 void MR_std_shared_ptr_void_AssignNonOwning(MR_std_shared_ptr_void *_this, void *ptr)
MRC_API MR_std_shared_ptr_void * MR_std_shared_ptr_void_ConstructFromAnother(MR_PassBy other_pass_by, MR_std_shared_ptr_void *other)
MRC_API int MR_std_shared_ptr_void_UseCount(const MR_std_shared_ptr_void *_this)
MRC_API void MR_std_shared_ptr_void_DestroyArray(const MR_std_shared_ptr_void *_this)
Destroys a heap-allocated array of MR_std_shared_ptr_void. Does nothing if the pointer is null.
MRC_API MR_std_shared_ptr_void * MR_std_shared_ptr_void_DefaultConstruct(void)