mirror of
https://github.com/softwarejanitor/calvados.git
synced 2025-06-23 17:23:53 +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");
|
||
|
}
|
||
|
|