mirror of
https://github.com/softwarejanitor/calvados.git
synced 2025-02-10 07:31: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");
|
||
|
}
|
||
|
|