ec_blobject_wrap
Last updated March 2020
Name
ec_blobject_wrap — Allocates memory for an ec_blobject and initializes it
Synopsis
#include "ec_blobject.h"
| ec_blobject * **ec_blobject_wrap** (
| cls, | |
| | object)
; | |
Description
Allocates memory for an “ec_blobject”, initializes it using cls
and object
, then returns the address of the allocated memory.
- cls
-
A pointer to an “ec_blobject_class”. This is used to initialize the “ec_blobject” that is returned.
- object
-
A
void
pointer. This is used to initialize the “ec_blobject” that is returned.
This function returns the address of the allocated and initialized “ec_blobject”.
It is legal to call this function in any thread.
See Also
Was this page helpful?