ModioQueuedModfileUpload - modio/modio-sdk-legacy GitHub Wiki
Modfile queued to be uploaded to mod.io.
struct ModioQueuedModfileUpload
{
u32 state;
u32 mod_id;
double current_progress;
double total_size;
char* path;
ModioModfileCreator modio_modfile_creator;
};
Name | Type | Description |
---|---|---|
state | u32 |
See Mod States constants. |
mod_id | u32 |
Unique mod identifier. |
current_progress | double |
Number of bytes downloaded. |
total_size | double |
Total number of bytes. |
path | char* |
Mod's local path. |
modio_modfile_creator | ModioModfileCreator |
ModioModfileCreator object. |
See also: modio::QueuedModfileUpload