mirror of https://github.com/stella-emu/stella.git
Updated VS project files for new EventHandler class.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2852 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
b2370205ca
commit
14c8546ce1
|
@ -125,7 +125,7 @@ static bool BSPF_equalsIgnoreCaseChar(char ch1, char ch2)
|
|||
// Compare two strings, ignoring case
|
||||
inline int BSPF_compareIgnoreCase(const string& s1, const string& s2)
|
||||
{
|
||||
#if defined WINDOWS && !defined __GNUG__
|
||||
#if defined BSPF_WINDOWS && !defined __GNUG__
|
||||
return _stricmp(s1.c_str(), s2.c_str());
|
||||
#else
|
||||
return strcasecmp(s1.c_str(), s2.c_str());
|
||||
|
@ -133,7 +133,7 @@ inline int BSPF_compareIgnoreCase(const string& s1, const string& s2)
|
|||
}
|
||||
inline int BSPF_compareIgnoreCase(const char* s1, const char* s2)
|
||||
{
|
||||
#if defined WINDOWS && !defined __GNUG__
|
||||
#if defined BSPF_WINDOWS && !defined __GNUG__
|
||||
return _stricmp(s1, s2);
|
||||
#else
|
||||
return strcasecmp(s1, s2);
|
||||
|
@ -143,7 +143,7 @@ inline int BSPF_compareIgnoreCase(const char* s1, const char* s2)
|
|||
// Test whether the first string starts with the second one (case insensitive)
|
||||
inline bool BSPF_startsWithIgnoreCase(const string& s1, const string& s2)
|
||||
{
|
||||
#if defined WINDOWS && !defined __GNUG__
|
||||
#if defined BSPF_WINDOWS && !defined __GNUG__
|
||||
return _strnicmp(s1.c_str(), s2.c_str(), s2.length()) == 0;
|
||||
#else
|
||||
return strncasecmp(s1.c_str(), s2.c_str(), s2.length()) == 0;
|
||||
|
@ -151,7 +151,7 @@ inline bool BSPF_startsWithIgnoreCase(const string& s1, const string& s2)
|
|||
}
|
||||
inline bool BSPF_startsWithIgnoreCase(const char* s1, const char* s2)
|
||||
{
|
||||
#if defined WINDOWS && !defined __GNUG__
|
||||
#if defined BSPF_WINDOWS && !defined __GNUG__
|
||||
return _strnicmp(s1, s2, strlen(s2)) == 0;
|
||||
#else
|
||||
return strncasecmp(s1, s2, strlen(s2)) == 0;
|
||||
|
|
|
@ -224,6 +224,7 @@ SDLmain.lib
|
|||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\Base.cxx" />
|
||||
<ClCompile Include="..\common\EventHandlerSDL2.cxx" />
|
||||
<ClCompile Include="..\common\FBSurfaceUI.cxx" />
|
||||
<ClCompile Include="..\common\FBSurfaceTIA.cxx" />
|
||||
<ClCompile Include="..\common\FrameBufferSDL2.cxx" />
|
||||
|
@ -466,6 +467,7 @@ SDLmain.lib
|
|||
<ClInclude Include="..\common\Array.hxx" />
|
||||
<ClInclude Include="..\common\Base.hxx" />
|
||||
<ClInclude Include="..\common\bspf.hxx" />
|
||||
<ClInclude Include="..\common\EventHandlerSDL2.hxx" />
|
||||
<ClInclude Include="..\common\FBSurfaceUI.hxx" />
|
||||
<ClInclude Include="..\common\FBSurfaceTIA.hxx" />
|
||||
<ClInclude Include="..\common\FrameBufferSDL2.hxx" />
|
||||
|
@ -727,4 +729,4 @@ SDLmain.lib
|
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
|
@ -753,6 +753,9 @@
|
|||
<ClCompile Include="..\debugger\gui\CartDFWidget.cxx">
|
||||
<Filter>Source Files\debugger</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common\EventHandlerSDL2.cxx">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\Array.hxx">
|
||||
|
@ -1517,6 +1520,9 @@
|
|||
<ClInclude Include="..\debugger\gui\CartDFWidget.hxx">
|
||||
<Filter>Header Files\debugger</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\EventHandlerSDL2.hxx">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="stella.ico">
|
||||
|
@ -1528,4 +1534,4 @@
|
|||
<Filter>Resource Files</Filter>
|
||||
</ResourceCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
Loading…
Reference in New Issue