This repository was archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
ModioModfileCreator
Ahmed Castro edited this page Jan 8, 2018
·
2 revisions
Object needed to create and update Modfiles (C compatible). Instead of editing the struct directly, we recommend you to customize it using the ModioModfileCreator functions.
struct ModioModfileCreator
{
char* path;
char* version;
char* changelog;
char* active;
};| Name | Type | Description |
|---|---|---|
| path | char* |
Local modfile path |
| version | char* |
The release version this file represents |
| changelog | char* |
List of all changes in this file release |
| active | char* |
Indicates if the file is accessible to public |
void modioInitModfileCreator(ModioModfileCreator* modfile_creator)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
void modioSetModfileCreatorPath(ModioModfileCreator* modfile_creator, char* path)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
| path | char* |
Local modfile path |
void modioSetModfileCreatorVersion(ModioModfileCreator* modfile_creator, char* version)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
| version | char* |
The release version this file represents |
void modioSetModfileCreatorChangelog(ModioModfileCreator* modfile_creator, char* changelog)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
| changelog | char* |
List of all changes in this file release |
void modioSetModfileCreatorActive(ModioModfileCreator* modfile_creator, bool active)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
| active | bool |
Indicates if the file is accessible to public |
void modioSetModfileCreatorFilehash(ModioModfileCreator* modfile_creator, char* filehash)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
| filehash | char* |
MD5 hash |
void modioFreeModfileCreator(ModioModfileCreator* modfile_creator)| Name | Type | Description |
|---|---|---|
| modfile_creator | ModioModfileCreator* |
ModioModfileCreator object to customize |
- Home
- Table of Contents
- Getting Started
- SDK Methods
- Creators
- Editors
- Schemas
- modio::Avatar
- modio::Comment
- modio::Dependency
- modio::Download
- modio::Error
- modio::Filehash
- modio::Game
- modio::GameTagOption
- modio::Header
- modio::Icon
- modio::Image
- modio::InstalledMod
- modio::Logo
- modio::Media
- modio::MetadataKVP
- modio::Mod
- modio::ModEvent
- modio::Modfile
- modio::QueuedModDownload
- modio::QueuedModfileUpload
- modio::Rating
- modio::Response
- modio::Stats
- modio::Tag
- modio::User
- Debugging
- Constants
-
C Compatibility
- Methods
- Initialization, Process and Shutdown (C compatible)
- User Authentication (C compatible)
- Mods (C compatible)
- Modfiles (C compatible)
- Media (C compatible)
- Subscriptions (C compatible)
- Events (C compatible)
- Stats (C compatible)
- Tags (C compatible)
- Ratings (C compatible)
- Metadata KVP (C compatible)
- Dependencies (C compatible)
- Comments (C compatible)
- Reports (C compatible)
- Me (C compatible)
- Downloads (C compatible)
- Uploads (C compatible)
- Logs (C compatible)
- External Auth (C compatible)
- Configuration (C compatible)
- Creators
- Editors
- Schemas
- ModioAvatar
- ModioComment
- ModioDependency
- ModioDownload
- ModioError
- ModioFilehash
- ModioGame
- ModioGameTagOption
- ModioHeader
- ModioIcon
- ModioImage
- ModioInstalledMod
- ModioListNode
- ModioLogo
- ModioMedia
- ModioMetadataKVP
- ModioMod
- ModioModEvent
- ModioModfile
- ModioQueuedModDownload
- ModioQueuedModfileUpload
- ModioRating
- ModioResponse
- ModioStats
- ModioTag
- ModioUser
- Methods
- Building