我的record.h文件
#ifndef _RECORD_H
#define _RECORD_H
void run_status_window(Recording *recording);
void stop_rec_button_clicked_cb(GtkButton *button, gpointer data);
GtkWidget* status_window(Recording *recording);
#endif
我的 .c 文件
#include "config.h
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
#include <gtk/gtk.h>
#include "record.h"
extern GtkWidget* mute_button;
extern GtkWidget *app;
...
当我尝试编译得到这个错误:
error: unknown type name 'Recording'
我应该怎么办 ?
谢谢