mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 03:47:54 +03:00
Move headers to include/
This commit is contained in:
parent
360b3d67b0
commit
7f8ebb7d0d
12 changed files with 1 additions and 1 deletions
16
include/log.h
Normal file
16
include/log.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _SWAY_LOG_H
|
||||
#define _SWAY_LOG_H
|
||||
|
||||
typedef enum {
|
||||
L_SILENT = 0,
|
||||
L_ERROR = 1,
|
||||
L_INFO = 2,
|
||||
L_DEBUG = 3,
|
||||
} log_importance_t;
|
||||
|
||||
void init_log(int verbosity);
|
||||
void sway_log_colors(int mode);
|
||||
void sway_log(int verbosity, char* format, ...);
|
||||
void sway_abort(char* format, ...);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue