]> icculus.org git repositories - taylor/freespace2.git/blob - include/initialships.h
proper padding of PXO stats struct for FS2 demo
[taylor/freespace2.git] / include / initialships.h
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 // InitialShips.h : header file
10 //
11
12 /////////////////////////////////////////////////////////////////////////////
13 // InitialShips dialog
14
15 #define INITIAL_SHIPS   1
16 #define INITIAL_WEAPONS 2
17
18 #define MAX_INITIAL_CHECKBOXES  30
19
20 class InitialShips : public CDialog
21 {
22 // Construction
23 public:
24         int m_initial_items;
25         InitialShips(CWnd* pParent = NULL);   // standard constructor
26
27 // Dialog Data
28         //{{AFX_DATA(InitialShips)
29         enum { IDD = IDD_INITIAL_SHIPS };
30         CCheckListBox   m_initial_list;
31         //}}AFX_DATA
32
33
34 // Overrides
35         // ClassWizard generated virtual function overrides
36         //{{AFX_VIRTUAL(InitialShips)
37         protected:
38         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
39         //}}AFX_VIRTUAL
40
41 // Implementation
42 protected:
43
44         // Generated message map functions
45         //{{AFX_MSG(InitialShips)
46         virtual BOOL OnInitDialog();
47         virtual void OnOK();
48         //}}AFX_MSG
49         DECLARE_MESSAGE_MAP()
50 private:
51         int m_list_count;
52 };
53