mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
16 lines
262 B
C
16 lines
262 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
|