CRIWARE for C#
Search Results for

    Show / Hide Table of Contents

    Class CriAtomAux

    CriAtomAux API

    Inheritance
    object
    CriAtomAux
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: CriWare
    Assembly: CriWare.CriAtom.dll
    Syntax
    public static class CriAtomAux

    Methods

    SetUserAllocator(delegate* unmanaged[Cdecl]<IntPtr, uint, IntPtr>, delegate* unmanaged[Cdecl]<IntPtr, IntPtr, void>, IntPtr)

    Pro

    ユーザアロケータの設定

    Declaration
    • C#
    • C
    public static void SetUserAllocator(delegate* unmanaged[Cdecl]<IntPtr, uint, IntPtr> mallocFunc, delegate* unmanaged[Cdecl]<IntPtr, IntPtr, void> freeFunc, IntPtr obj)
    void CRIAPI criAtomAux_SetUserAllocator(CriAtomAuxMallocFunc malloc_func, CriAtomAuxFreeFunc free_func, void *obj)
    Parameters
    Type Name Description
    delegate* unmanaged[Cdecl]<IntPtr, uint, IntPtr> mallocFunc

    メモリ確保関数

    delegate* unmanaged[Cdecl]<IntPtr, IntPtr, void> freeFunc

    メモリ解放関数

    IntPtr obj

    ユーザポインタ

    Remarks

    説明: CriAtomAuxライブラリ内でメモリ確保、解放する際に呼ばれる関数を登録します。

    In this article
    Back to top Generated by DocFX