mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
19 lines
305 B
C
19 lines
305 B
C
#pragma once
|
|
|
|
#ifndef FF_INCLUDED_detection_qt
|
|
#define FF_INCLUDED_detection_qt
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFQtResult
|
|
{
|
|
FFstrbuf widgetStyle;
|
|
FFstrbuf colorScheme;
|
|
FFstrbuf icons;
|
|
FFstrbuf font;
|
|
} FFQtResult;
|
|
|
|
const FFQtResult* ffDetectQt(const FFinstance* instance);
|
|
|
|
#endif
|