Gonna start Open With thing

This commit is contained in:
Yevgen Muntyan 2006-05-21 11:17:14 -05:00
parent 55ba82f2c9
commit 58466e2e97
3 changed files with 47 additions and 0 deletions

View File

@ -26,6 +26,8 @@ moofileview_sources = \
$(moofileview)/moofileview-dialogs.c \
$(moofileview)/moofileview-dialogs.h \
$(moofileview)/moofileview-private.h \
$(moofileview)/moofileview-tools.c \
$(moofileview)/moofileview-tools.h \
$(moofileview)/moofoldermodel.c \
$(moofileview)/moofoldermodel.h \
$(moofileview)/moofoldermodel-private.h \

View File

@ -0,0 +1,20 @@
/*
* moofileview-tools.c
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
*/
#include "moofileview/moofileview-tools.h"
void
_moo_file_view_tools_load (const char *id)
{
}

View File

@ -0,0 +1,25 @@
/*
* moofileview-tools.h
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
*/
#ifndef __MOO_FILE_VIEW_TOOLS_H__
#define __MOO_FILE_VIEW_TOOLS_H__
#include "moofileview/moofileview.h"
G_BEGIN_DECLS
G_END_DECLS
#endif /* __MOO_FILE_VIEW_TOOLS_H__ */