mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 22:38:41 +02:00
11 lines
167 B
C
11 lines
167 B
C
#ifndef _AUTHH_
|
|
#define _AUTHH_
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sessions.h>
|
|
|
|
bool launch(char *user, char *passwd, struct session session, void (*cb)(void));
|
|
|
|
#endif
|