mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 20:04:57 +01:00
Updated file structure
This commit is contained in:
parent
38ec3eea66
commit
d51bd2bbe6
11 changed files with 66 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
PROJECT = zathura
|
PROJECT = zathura
|
||||||
SOURCE = zathura.c
|
SOURCE = callbacks.c commands.c config.c shortcuts.c utils.c zathura.c
|
||||||
OBJECTS = ${SOURCE:.c=.o}
|
OBJECTS = ${SOURCE:.c=.o}
|
||||||
DOBJECTS = ${SOURCE:.c=.do}
|
DOBJECTS = ${SOURCE:.c=.do}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
45
commands.c
45
commands.c
|
@ -0,0 +1,45 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
||||||
|
|
||||||
|
#include "commands.h"
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_bookmark_create(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_bookmark_delete(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_bookmark_open(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_close(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_info(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_print(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
cmd_save(girara_session_t* session, int argc, char** argv)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
12
commands.h
12
commands.h
|
@ -0,0 +1,12 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <girara.h>
|
||||||
|
|
||||||
|
bool cmd_bookmark_create(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_bookmark_delete(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_bookmark_open(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_close(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_info(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_print(girara_session_t* session, int argc, char** argv);
|
||||||
|
bool cmd_save(girara_session_t* session, int argc, char** argv);
|
1
completion.c
Normal file
1
completion.c
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
1
completion.h
Normal file
1
completion.h
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
1
config.c
1
config.c
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
1
config.h
Normal file
1
config.h
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
1
utils.h
1
utils.h
|
@ -0,0 +1 @@
|
||||||
|
/* See LICENSE file for license and copyright information */
|
Loading…
Reference in a new issue