Function
DexFuturenew_take_boxed
Declaration [src]
DexFuture*
dex_future_new_take_boxed (
GType type,
gpointer value
)
Description [src]
Creates a new DexFuture
that is resolved with value
.
This function is not directly available to language bindings.
Parameters
type
-
Type:
GType
No description available.
value
-
Type:
gpointer
The value for the boxed type.
The argument can be NULL
.The called function takes ownership of the data, and is responsible for freeing it.
Return value
Type: DexStaticFuture
A resolved DexFuture
.
The caller of the function takes ownership of the data, and is responsible for freeing it. |