You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
12 lines
265 B
C
12 lines
265 B
C
#include <gio/gio.h>
|
|
|
|
struct _AssetInputStream
|
|
{
|
|
GInputStream parent_instance;
|
|
struct Asset *asset;
|
|
};
|
|
|
|
G_DECLARE_FINAL_TYPE(AssetInputStream, asset_input_stream, ATL, ASSET_INPUT_STREAM, GInputStream);
|
|
|
|
GInputStream *asset_input_stream_new(struct Asset *asset);
|