diff options
Diffstat (limited to 'src/detection/lm/lm.h')
| -rw-r--r-- | src/detection/lm/lm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/detection/lm/lm.h b/src/detection/lm/lm.h new file mode 100644 index 0000000..d30229a --- /dev/null +++ b/src/detection/lm/lm.h @@ -0,0 +1,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); |