mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
19 lines
324 B
C
19 lines
324 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* fd, void* ctx,
|
|
struct status (*cb)(void* ctx, char* NULLABLE table, char* key,
|
|
char* value));
|
|
|
|
#endif
|