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