entrance/src/daemon/entrance.h

41 lines
829 B
C

#ifndef ENTRANCE_H_
#define ENTRANCE_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <Eina.h>
#include <Eet.h>
#include <Ecore.h>
#include <Ecore_File.h>
#include <Efreet.h>
#include "entrance_session.h"
#ifdef HAVE_PAM
#include "entrance_pam.h"
#endif
#include "../event/entrance_event.h"
#include "entrance_config.h"
#include "entrance_xserver.h"
#include "entrance_server.h"
#include "entrance_history.h"
#include "entrance_action.h"
#include "entrance_image.h"
#include "entrance_theme.h"
int _entrance_log;
int _entrance_client_log;
#define PT(f, x...) \
do \
{ \
EINA_LOG_DOM_INFO(_entrance_log, f, ##x); \
} while (0)
void entrance_close_log();
#endif /* ENTRANCE_H_ */