mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-09-11 12:55:31 +00:00
fbf7281338
Added a significant amount more of the UI code
18 lines
225 B
C
18 lines
225 B
C
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "calvados.h"
|
|
|
|
/*
|
|
*
|
|
* do_new_archive()
|
|
*
|
|
* Actually create a new archive
|
|
*
|
|
*/
|
|
void do_new_archive(char *filename)
|
|
{
|
|
g_print("Do new archive goes here.\n");
|
|
}
|
|
|