mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-02 22:05:04 +02:00
21 lines
488 B
C
21 lines
488 B
C
#ifndef DESKTOPH_
|
|
#define DESKTOPH_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
#include "macros.h"
|
|
|
|
struct status {
|
|
bool finish;
|
|
int ret;
|
|
};
|
|
|
|
int read_desktop(FILE* NNULLABLE fd, void* UNULLABLE ctx,
|
|
struct status (*NNULLABLE cb)(void* UNULLABLE ctx,
|
|
char* NULLABLE table,
|
|
char* NNULLABLE key,
|
|
char* NNULLABLE value));
|
|
|
|
#endif
|