mirror of
https://github.com/javalsai/lidm.git
synced 2025-08-31 02:18:00 +02:00
add -Wextra by default pipefd to communicate better with parent and forked process rustify some stuff add the desktop parser to the file read
14 lines
271 B
C
14 lines
271 B
C
#ifndef AUTHH_
|
|
#define AUTHH_
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "config.h"
|
|
#include "sessions.h"
|
|
|
|
bool launch(char* NNULLABLE user, char* NNULLABLE passwd,
|
|
struct session session, void (*NULLABLE cb)(void),
|
|
struct config* NNULLABLE config);
|
|
|
|
#endif
|