|
From: <sag...@us...> - 2011-07-28 21:32:39
|
Revision: 933
http://modplug.svn.sourceforge.net/modplug/?rev=933&view=rev
Author: saga-games
Date: 2011-07-28 21:32:33 +0000 (Thu, 28 Jul 2011)
Log Message:
-----------
Added missing include statement
Modified Paths:
--------------
trunk/OpenMPT/soundlib/mod_specifications.cpp
Modified: trunk/OpenMPT/soundlib/mod_specifications.cpp
===================================================================
--- trunk/OpenMPT/soundlib/mod_specifications.cpp 2011-07-28 20:51:57 UTC (rev 932)
+++ trunk/OpenMPT/soundlib/mod_specifications.cpp 2011-07-28 21:32:33 UTC (rev 933)
@@ -1,7 +1,10 @@
#include <stdafx.h>
#include "mod_specifications.h"
+#include "..\mptrack\misc_util.h"
+
MODTYPE CModSpecifications::ExtensionToType(LPCTSTR pszExt)
+//---------------------------------------------------------
{
if (pszExt == nullptr)
return MOD_TYPE_NONE;
@@ -30,6 +33,7 @@
return MOD_TYPE_NONE;
}
+
bool CModSpecifications::HasNote(MODCOMMAND::NOTE note) const
//------------------------------------------------------------
{
@@ -50,6 +54,7 @@
return false;
}
+
bool CModSpecifications::HasVolCommand(MODCOMMAND::VOLCMD volcmd) const
//---------------------------------------------------------------------
{
@@ -58,6 +63,7 @@
return true;
}
+
bool CModSpecifications::HasCommand(MODCOMMAND::COMMAND cmd) const
//----------------------------------------------------------------
{
@@ -66,6 +72,7 @@
return true;
}
+
char CModSpecifications::GetVolEffectLetter(MODCOMMAND::VOLCMD volcmd) const
//--------------------------------------------------------------------------
{
@@ -73,6 +80,7 @@
return volcommands[volcmd];
}
+
char CModSpecifications::GetEffectLetter(MODCOMMAND::COMMAND cmd) const
//---------------------------------------------------------------------
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|