From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_wave_8h_source.html | 169 ++++++++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 Doc/doxygen/html/_wave_8h_source.html (limited to 'Doc/doxygen/html/_wave_8h_source.html') diff --git a/Doc/doxygen/html/_wave_8h_source.html b/Doc/doxygen/html/_wave_8h_source.html new file mode 100644 index 0000000..fba794f --- /dev/null +++ b/Doc/doxygen/html/_wave_8h_source.html @@ -0,0 +1,169 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/nGenEx/Wave.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Wave.h
+
+
+Go to the documentation of this file.
1 /* Project nGenEx
+
2  Destroyer Studios LLC
+
3  Copyright © 1997-2004. All Rights Reserved.
+
4 
+
5  SUBSYSTEM: nGenEx.lib
+
6  FILE: Wave.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 */
+
10 
+
11 #ifndef Wave_h
+
12 #define Wave_h
+
13 
+
14 #include "Types.h"
+
15 
+
16 // +--------------------------------------------------------------------+
+
17 
+ +
19 {
+
20  DWORD RIFF;
+
21  DWORD file_len;
+
22  DWORD WAVE;
+
23 };
+
24 
+
25 struct WAVE_FMT
+
26 {
+
27  DWORD FMT;
+
28  DWORD chunk_size;
+
29  WORD wFormatTag;
+
30  WORD nChannels;
+ + +
33  WORD nBlockAlign;
+ +
35 };
+
36 
+
37 struct WAVE_FACT
+
38 {
+
39  DWORD FACT;
+
40  DWORD chunk_size;
+
41 };
+
42 
+
43 struct WAVE_DATA
+
44 {
+
45  DWORD DATA;
+
46  DWORD chunk_size;
+
47 };
+
48 
+
49 // +--------------------------------------------------------------------+
+
50 
+
51 #endif Wave_h
+
52 
+
+
+ + + + -- cgit v1.1