mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-12 10:22:12 +02:00
14 lines
442 B
C
14 lines
442 B
C
|
|
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
#include <yyjson.h>
|
|
|
|
#define FF_PLAYER_MODULE_NAME "Player"
|
|
|
|
void ffPrintPlayer(FFinstance* instance, FFPlayerOptions* options);
|
|
void ffInitPlayerOptions(FFPlayerOptions* options);
|
|
bool ffParsePlayerCommandOptions(FFPlayerOptions* options, const char* key, const char* value);
|
|
void ffDestroyPlayerOptions(FFPlayerOptions* options);
|
|
void ffParsePlayerJsonObject(FFinstance* instance, yyjson_val* module);
|