]> git.sesse.net Git - vlc/commitdiff
Freetype: unexport a function we don't need anymore on Win32
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Dec 2013 16:38:53 +0000 (17:38 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Dec 2013 16:38:53 +0000 (17:38 +0100)
modules/text_renderer/platform_fonts.c
modules/text_renderer/platform_fonts.h

index 31ea7305375d949a0c308489716a1dda8eb1128d..28d4437c1e6806bb06e9a406e959d6a6762101fe 100644 (file)
@@ -252,7 +252,7 @@ static int CALLBACK EnumFontCallback(const ENUMLOGFONTEX *lpelfe, const NEWTEXTM
     return GetFileFontByName( (LPCTSTR)lpelfe->elfFullName, (char **)lParam );
 }
 
-char* GetWindowsFontPath()
+static char* GetWindowsFontPath()
 {
     wchar_t wdir[MAX_PATH];
     if( S_OK != SHGetFolderPathW( NULL, CSIDL_FONTS, NULL, SHGFP_TYPE_CURRENT, wdir ) )
index 287a3961de963fcf26f9e68885325e919a0415af..1cb916278ed461851aad1fba8fc0c3500ae187cd 100644 (file)
@@ -86,7 +86,6 @@ void FontConfig_BuildCache( filter_t *p_filter );
 
 
 #ifdef _WIN32
-char* GetWindowsFontPath();
 char* Win32_Select( filter_t *p_filter, const char* family,
                            bool b_bold, bool b_italic, int i_size, int *i_idx );