aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-06 15:01:31 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-06 15:01:31 +0000
commit53f45d63bbb3ea350ee9200709180657348d4421 (patch)
treef1af4aaf45d88503ede2ddd28f7cf436f55823e6
parent1b55beaa2cdcc591595773113d29ab5df4d5103d (diff)
prefill
-rw-r--r--Spectrogram.h14
-rw-r--r--SpectrogramP.h27
2 files changed, 41 insertions, 0 deletions
diff --git a/Spectrogram.h b/Spectrogram.h
index 98dbdd3..8d33021 100644
--- a/Spectrogram.h
+++ b/Spectrogram.h
@@ -15,3 +15,17 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef _Spectrogram_h
+#define _Spectrogram_h
+
+/* Spectrogram Widget */
+/* Parameters:
+ * Name Class RepType Default Value
+ */
+
+typedef struct _SpectrogramRec *SpectrogramWidget;
+typedef struct _SpectrogramClassRec *SpectrogramWidgetClass;
+
+extern WidgetClass spectrogramWidgetClass;
+
+#endif
diff --git a/SpectrogramP.h b/SpectrogramP.h
index 98dbdd3..67ac82e 100644
--- a/SpectrogramP.h
+++ b/SpectrogramP.h
@@ -15,3 +15,30 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef _SpectrogramP_h
+#define _SpectrogramP_h
+
+#include "Spectrogram.h"
+
+typedef struct {
+ int dummy;
+} SpectrogramPart;
+
+typedef struct _SpectrogramRec {
+ int dummy;
+} SpectrogramRec;
+
+typedef struct {
+ int dummy;
+} SpectrogramClassPart;
+
+typedef struct _SpectrogramClassRec {
+ int dummy;
+} SpectrogramClassRec;
+
+extern SpectrogramClassRec spectrogramClassRec;
+
+__BEGIN_DECLS
+__END_DECLS
+
+#endif