#include <windows.h>
#include <scrnsave.h>
+#include <tchar.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
GLuint texture[3]; //stores texture objects and display list
-LPCTSTR registryPath = ("Software\\Microsoft\\ScreenSavers\\Butterflies");
+LPCTSTR registryPath = _T("Software\\Microsoft\\ScreenSavers\\Butterflies");
BOOL dRotate;
valsize=sizeof(val);
- result = RegQueryValueEx(skey, "Rotate", 0, &valtype, (LPBYTE)&val, &valsize);
+ result = RegQueryValueEx(skey, _T("Rotate"), 0, &valtype, (LPBYTE)&val, &valsize);
if(result == ERROR_SUCCESS)
dRotate = val;
RegCloseKey(skey);
return;
val = dRotate;
- RegSetValueEx(skey, "Rotate", 0, REG_DWORD, (CONST BYTE*)&val, sizeof(val));
+ RegSetValueEx(skey, _T("Rotate"), 0, REG_DWORD, (CONST BYTE*)&val, sizeof(val));
RegCloseKey(skey);
}
EndDialog(hdlg, LOWORD(wpm));
break;
case WEBPAGE1:
- ShellExecute(NULL, "open", "http://nehe.gamedev.net", NULL, NULL, SW_SHOWNORMAL);
+ ShellExecute(NULL, _T("open"), _T("http://nehe.gamedev.net"), NULL, NULL, SW_SHOWNORMAL);
break;
case WEBPAGE2:
- ShellExecute(NULL, "open", "http://www.thaputer.com", NULL, NULL, SW_SHOWNORMAL);
+ ShellExecute(NULL, _T("open"), _T("http://www.thaputer.com"), NULL, NULL, SW_SHOWNORMAL);
break;
}
}
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../../tools/rbuild/project.dtd">
-<module name="butterflies" type="win32scr" installbase="system32" installname="butterflies.scr" allowwarnings="true">
+<module name="butterflies" type="win32scr" installbase="system32" installname="butterflies.scr" unicode="yes">
<importlibrary definition="butterflies.def" />
<include base="butterflies">.</include>
<library>scrnsave</library>
<library>opengl32</library>
<library>glu32</library>
<library>advapi32</library>
- <library>shell32</library>
+ <library>shell32</library>
<metadata description = "OpenGL Butterflies screensaver" />