diff options
Diffstat (limited to 'font_service/FontService.cpp')
-rw-r--r-- | font_service/FontService.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/font_service/FontService.cpp b/font_service/FontService.cpp index 05b8aa9..a8a8b89 100644 --- a/font_service/FontService.cpp +++ b/font_service/FontService.cpp @@ -10,8 +10,12 @@ PLUGININFO pluginInfo={
sizeof(PLUGININFO),
+#ifndef _UNICODE
+ "FontService (ANSI)",
+#else
"FontService",
- PLUGIN_MAKE_VERSION(0, 1, 4, 4),
+#endif
+ PLUGIN_MAKE_VERSION(0, 2, 0, 0),
"Provides a UI for font settings, and services to plugins for font control.",
"S. Ellis",
"mail@scottellis.com.au",
@@ -44,12 +48,12 @@ extern "C" BOOL APIENTRY DllMain( HANDLE hModule, int ModulesLoaded(WPARAM wParam, LPARAM lParam) {
- if(!GetModuleHandle(L"CLIST_MODERN"))
+ if(!GetModuleHandle(_T("CLIST_MODERN")))
RegisterCListFonts();
- if(GetModuleHandle(L"SRMM"))
+ if(GetModuleHandle(_T("SRMM")))
RegisterSRMMFonts();
- if(GetModuleHandle(L"CHAT"))
+ if(GetModuleHandle(_T("CHAT")))
RegisterChatFonts();
return 0;
|