mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-10-31 10:17:58 +00:00
18 lines
299 B
C
18 lines
299 B
C
|
#include <gtk/gtk.h>
|
||
|
|
||
|
#include "calvados.h"
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* convert_to_archive_file()
|
||
|
*
|
||
|
* convert_to_archive_file Volume from the menu.
|
||
|
*
|
||
|
*/
|
||
|
void convert_to_archive_file(GtkWidget *widget, gpointer data)
|
||
|
{
|
||
|
/* --- Display message --- */
|
||
|
g_print("convert_to_archive_file function goes here.\n");
|
||
|
}
|
||
|
|