Files
fastfetch/src/detection/bluetooth/bluetooth.h
T

15 lines
307 B
C
Raw Normal View History

2023-01-24 10:39:33 +01:00
#pragma once
#include "fastfetch.h"
typedef struct FFBluetoothResult
2023-01-24 10:39:33 +01:00
{
FFstrbuf name;
FFstrbuf address;
FFstrbuf type;
uint8_t battery; // 0-100%
2023-01-24 12:02:20 +01:00
bool connected;
} FFBluetoothResult;
2023-01-24 12:02:20 +01:00
const char* ffDetectBluetooth(FFBluetoothOptions* options, FFlist* devices /* FFBluetoothResult */);