Files
fastfetch/src/detection/bluetooth/bluetooth.h
T
2023-11-09 13:46:45 +08:00

15 lines
278 B
C

#pragma once
#include "fastfetch.h"
typedef struct FFBluetoothResult
{
FFstrbuf name;
FFstrbuf address;
FFstrbuf type;
uint8_t battery; // 0-100%
bool connected;
} FFBluetoothResult;
const char* ffDetectBluetooth(FFlist* devices /* FFBluetoothResult */);