mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[winver]
convert to unicode svn path=/trunk/; revision=61683
This commit is contained in:
parent
abe8b71bf5
commit
abb28f6a28
1 changed files with 3 additions and 3 deletions
|
@ -2,14 +2,14 @@
|
|||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <shellapi.h>
|
||||
#include <tchar.h>
|
||||
|
||||
int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) {
|
||||
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
|
||||
{
|
||||
static const WCHAR szROS[] = { 'R','e','a','c','t','O','S',0 };
|
||||
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||
UNREFERENCED_PARAMETER(nCmdShow);
|
||||
UNREFERENCED_PARAMETER(hPrevInstance);
|
||||
UNREFERENCED_PARAMETER(hInstance);
|
||||
ShellAbout(0, szROS, 0, 0);
|
||||
ShellAboutW(0, szROS, 0, 0);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue