blob: d30229a79fed5e07806917e88263b42a333087a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "fastfetch.h"
#include "modules/lm/option.h"
typedef struct FFLMResult {
FFstrbuf service;
FFstrbuf type;
FFstrbuf version;
} FFLMResult;
const char* ffDetectLM(FFLMResult* result);
|