From 8c08eefa288ab508b4c98f185c868957580f3985 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Sat, 20 Mar 2010 12:09:30 +0000 Subject: [PATCH] Added EndsWith to headerfile --- source/shared_lib/include/platform/sdl/platform_util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/shared_lib/include/platform/sdl/platform_util.h b/source/shared_lib/include/platform/sdl/platform_util.h index 9813dc0ed..8b49988d5 100644 --- a/source/shared_lib/include/platform/sdl/platform_util.h +++ b/source/shared_lib/include/platform/sdl/platform_util.h @@ -101,6 +101,7 @@ void getFullscreenVideoInfo(int &colorBits,int &screenWidth,int &screenHeight); bool changeVideoMode(int resH, int resW, int colorBits, int refreshFrequency); void restoreVideoMode(); +bool EndsWith(const string &str, const string& key); void message(string message); bool ask(string message); void exceptionMessage(const exception &excp);