mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 01:03:16 +00:00
use unicode directive
svn path=/trunk/; revision=28247
This commit is contained in:
parent
c03ea6d0ce
commit
812a9e4d7b
6 changed files with 9 additions and 9 deletions
|
@ -444,8 +444,8 @@ LRESULT CALLBACK WndProc (HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
|
||||||
return DefWindowProc (hwnd, Message, wParam, lParam);
|
return DefWindowProc (hwnd, Message, wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
INT WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInst,
|
INT WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInst,
|
||||||
LPSTR lpCmdLine, INT nCmdShow)
|
LPTSTR lpCmdLine, INT nCmdShow)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
WNDCLASSEXW WndClass = {0};
|
WNDCLASSEXW WndClass = {0};
|
||||||
|
|
|
@ -226,7 +226,7 @@ GetBasicInfo(LPOSVERSIONINFOEX osvi, TCHAR * HostName, TCHAR * OSName, TCHAR * V
|
||||||
}
|
}
|
||||||
|
|
||||||
INT
|
INT
|
||||||
main (VOID)
|
_tmain (VOID)
|
||||||
{
|
{
|
||||||
DWORD Operations = 0;
|
DWORD Operations = 0;
|
||||||
INT ret = 255;
|
INT ret = 255;
|
||||||
|
|
|
@ -4,9 +4,9 @@ HINSTANCE hInstance;
|
||||||
HANDLE ProcessHeap;
|
HANDLE ProcessHeap;
|
||||||
|
|
||||||
int WINAPI
|
int WINAPI
|
||||||
WinMain(HINSTANCE hThisInstance,
|
_tWinMain(HINSTANCE hThisInstance,
|
||||||
HINSTANCE hPrevInstance,
|
HINSTANCE hPrevInstance,
|
||||||
LPSTR lpCmdLine,
|
LPTSTR lpCmdLine,
|
||||||
int nCmdShow)
|
int nCmdShow)
|
||||||
{
|
{
|
||||||
LPTSTR lpAppName, lpVersion, lpTitle;
|
LPTSTR lpAppName, lpVersion, lpTitle;
|
||||||
|
|
|
@ -334,9 +334,9 @@ ConvertDDBtoDIB(PSCREENSHOT pScrSht)
|
||||||
|
|
||||||
|
|
||||||
// INT WINAPI GetScreenshot(BOOL bFullScreen)
|
// INT WINAPI GetScreenshot(BOOL bFullScreen)
|
||||||
int WINAPI WinMain(HINSTANCE hInstance,
|
int WINAPI _tWinMain(HINSTANCE hInstance,
|
||||||
HINSTANCE hPrevInstance,
|
HINSTANCE hPrevInstance,
|
||||||
PSTR szCmdLine,
|
LPTSTR szCmdLine,
|
||||||
int iCmdShow)
|
int iCmdShow)
|
||||||
{
|
{
|
||||||
PSCREENSHOT pScrSht;
|
PSCREENSHOT pScrSht;
|
||||||
|
|
|
@ -602,7 +602,7 @@ unsigned int GetKeyPressed(int events)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int _tmain(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
TCHAR lpStr[80];
|
TCHAR lpStr[80];
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
|
|
||||||
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
|
int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) {
|
||||||
static const WCHAR szROS[] = { 'R','e','a','c','t','O','S',0 };
|
static const WCHAR szROS[] = { 'R','e','a','c','t','O','S',0 };
|
||||||
UNREFERENCED_PARAMETER(lpCmdLine);
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||||
UNREFERENCED_PARAMETER(nCmdShow);
|
UNREFERENCED_PARAMETER(nCmdShow);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue