]> icculus.org git repositories - taylor/freespace2.git/blob - src/fred2/dialog1.cpp
fix issue with looping audio streams
[taylor/freespace2.git] / src / fred2 / dialog1.cpp
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/FRED2/dialog1.cpp $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * key usage summary screen (actually a dialog box, but it's not very interactive)
16  *
17  * $Log$
18  * Revision 1.3  2002/06/09 04:41:16  relnev
19  * added copyright header
20  *
21  * Revision 1.2  2002/05/07 03:16:44  theoddone33
22  * The Great Newline Fix
23  *
24  * Revision 1.1.1.1  2002/05/03 03:28:08  root
25  * Initial import.
26  *
27  * 
28  * 2     10/07/98 6:28p Dave
29  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
30  * Fred. Globalized mission and campaign file extensions. Removed Silent
31  * Threat specific code.
32  * 
33  * 1     10/07/98 3:01p Dave
34  * 
35  * 1     10/07/98 3:00p Dave
36  * 
37  * 2     2/17/97 5:28p Hoffoss
38  * Checked RCS headers, added them were missing, changing description to
39  * something better, etc where needed.
40  *
41  * $NoKeywords: $
42  */
43
44 #include "stdafx.h"
45 #include "fred.h"
46 #include "dialog1.h"
47
48 #ifdef _DEBUG
49 #define new DEBUG_NEW
50 #undef THIS_FILE
51 static char THIS_FILE[] = __FILE__;
52 #endif
53
54 /////////////////////////////////////////////////////////////////////////////
55 // dialog1 dialog
56
57 dialog1::dialog1(CWnd* pParent /*=NULL*/)
58         : CDialog(dialog1::IDD, pParent)
59 {
60         //{{AFX_DATA_INIT(dialog1)
61                 // NOTE: the ClassWizard will add member initialization here
62         //}}AFX_DATA_INIT
63 }
64
65 void dialog1::DoDataExchange(CDataExchange* pDX)
66 {
67         CDialog::DoDataExchange(pDX);
68         //{{AFX_DATA_MAP(dialog1)
69                 // NOTE: the ClassWizard will add DDX and DDV calls here
70         //}}AFX_DATA_MAP
71 }
72
73 BEGIN_MESSAGE_MAP(dialog1, CDialog)
74         //{{AFX_MSG_MAP(dialog1)
75                 // NOTE: the ClassWizard will add message map macros here
76         //}}AFX_MSG_MAP
77 END_MESSAGE_MAP()
78
79 /////////////////////////////////////////////////////////////////////////////
80 // dialog1 message handlers
81