Updated file structure

This commit is contained in:
Moritz Lipp 2010-11-10 20:31:15 +01:00
parent 38ec3eea66
commit d51bd2bbe6
11 changed files with 66 additions and 1 deletions

View file

@ -4,7 +4,7 @@
include config.mk
PROJECT = zathura
SOURCE = zathura.c
SOURCE = callbacks.c commands.c config.c shortcuts.c utils.c zathura.c
OBJECTS = ${SOURCE:.c=.o}
DOBJECTS = ${SOURCE:.c=.do}

View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

View file

@ -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;
}

View file

@ -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
View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

1
completion.h Normal file
View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

1
config.h Normal file
View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */

View file

@ -0,0 +1 @@
/* See LICENSE file for license and copyright information */