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