mirror of
https://github.com/javalsai/lidm.git
synced 2026-05-28 18:17:17 +02:00
7e7a297e2e
Co-authored-by: grialion <48643945+grialion@users.noreply.github.com>
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
|