diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2009-11-18 03:09:47 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2009-11-18 03:09:47 +0200 |
commit | 95f46008d2884934fb3186291fceb34f11bf5f0e (patch) | |
tree | d7d19a95500f96fdc890e55d540990bd2b4c307e /watrack_mpd/commonheaders.h | |
parent | 647648108393008bfa96987d44628b99c602abf0 (diff) |
modified: commonheaders.h
modified: constants.h
new file: globals.h
modified: init.c
modified: main.c
modified: main.h
modified: utilities.c
new file: utilities.h
modified: watrack_mpd.vcproj
Diffstat (limited to 'watrack_mpd/commonheaders.h')
-rwxr-xr-x | watrack_mpd/commonheaders.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/watrack_mpd/commonheaders.h b/watrack_mpd/commonheaders.h index 81ccc20..e2e578c 100755 --- a/watrack_mpd/commonheaders.h +++ b/watrack_mpd/commonheaders.h @@ -13,7 +13,8 @@ // You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
+#ifndef COMMONHEADERS_H
+#define COMMONHEADERS_H
#include <windows.h>
#include <tchar.h>
#include <malloc.h>
@@ -25,7 +26,7 @@ #include <m_netlib.h>
//#include <m_clist.h>
//#include <m_skin.h>
-//#include <m_database.h>
+#include <m_database.h>
//#include <m_protosvc.h>
//#include <m_protocols.h>
#include <m_system.h>
@@ -34,6 +35,9 @@ #include "resource.h"
+#include "globals.h"
#include "main.h"
#include "constants.h"
#include "m_music.h"
+#include "utilities.h"
+#endif
|