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