mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
#pragma once
|
|
|
|
#ifndef FASTFETCH_INCLUDED_cf_helpers
|
|
#define FASTFETCH_INCLUDED_cf_helpers
|
|
|
|
#include "fastfetch.h"
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
//Return error info if failed, NULL otherwise
|
|
const char* ffCfStrGetString(CFStringRef str, FFstrbuf* result);
|
|
const char* ffCfDictGetString(CFDictionaryRef dict, CFStringRef key, FFstrbuf* result);
|
|
const char* ffCfDictGetBool(CFDictionaryRef dict, CFStringRef key, bool* result);
|
|
const char* ffCfDictGetInt(CFDictionaryRef dict, CFStringRef key, int* result);
|
|
const char* ffCfDictGetInt64(CFDictionaryRef dict, CFStringRef key, int64_t* result);
|
|
const char* ffCfDictGetData(CFDictionaryRef dict, CFStringRef key, uint32_t offset, uint32_t size, uint8_t* result, uint32_t* length);
|
|
const char* ffCfDictGetDict(CFDictionaryRef dict, CFStringRef key, CFDictionaryRef* result);
|
|
|
|
static inline CFNumberRef ffCfCreateInt(int value)
|
|
{
|
|
return CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &value);
|
|
}
|
|
|
|
static inline void cfReleaseWrapper(void* type)
|
|
{
|
|
if (*(CFTypeRef*) type)
|
|
CFRelease(*(CFTypeRef*) type);
|
|
}
|
|
|
|
#define FF_CFTYPE_AUTO_RELEASE __attribute__((__cleanup__(cfReleaseWrapper)))
|
|
|
|
#endif
|