diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/public/unicode | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/public/unicode')
| -rw-r--r-- | mp/src/public/unicode/unicode.h | 136 |
1 files changed, 68 insertions, 68 deletions
diff --git a/mp/src/public/unicode/unicode.h b/mp/src/public/unicode/unicode.h index 069edfbe..7c3522e2 100644 --- a/mp/src/public/unicode/unicode.h +++ b/mp/src/public/unicode/unicode.h @@ -1,68 +1,68 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================//
-
-#ifndef UNICODE_H
-#define UNICODE_H
-#ifdef _WIN32
-#pragma once
-#endif
-
-#include "interface.h"
-
-#ifndef WIN32_LEAN_AND_MEAN
-#define WIN32_LEAN_AND_MEAN
-#endif
-
-#if !defined( _X360 )
-#include <windows.h>
-#endif
-#if defined( _X360 )
-#include "xbox/xbox_win32stubs.h"
-#endif
-
-class IUnicodeWindows : public IBaseInterface
-{
-public:
- virtual LRESULT DefWindowProcW
- (
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam
- ) = 0;
-
- virtual HWND CreateWindowExW
- (
- DWORD dwExStyle,
- LPCWSTR lpClassName,
- LPCWSTR lpWindowName,
- DWORD dwStyle,
- int x,
- int y,
- int nWidth,
- int nHeight,
- HWND hWndParent,
- HMENU hMenu,
- HINSTANCE hInstance,
- LPVOID lpParam
- ) = 0;
-
- virtual ATOM RegisterClassW
- (
- CONST WNDCLASSW *lpWndClass
- ) = 0;
-
- virtual BOOL UnregisterClassW
- (
- LPCWSTR lpClassName,
- HINSTANCE hInstance
- ) = 0;
-};
-
-#define VENGINE_UNICODEINTERFACE_VERSION "VENGINEUNICODE001"
-
-
-#endif // UNICODE_H
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef UNICODE_H +#define UNICODE_H +#ifdef _WIN32 +#pragma once +#endif + +#include "interface.h" + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif + +#if !defined( _X360 ) +#include <windows.h> +#endif +#if defined( _X360 ) +#include "xbox/xbox_win32stubs.h" +#endif + +class IUnicodeWindows : public IBaseInterface +{ +public: + virtual LRESULT DefWindowProcW + ( + HWND hWnd, + UINT Msg, + WPARAM wParam, + LPARAM lParam + ) = 0; + + virtual HWND CreateWindowExW + ( + DWORD dwExStyle, + LPCWSTR lpClassName, + LPCWSTR lpWindowName, + DWORD dwStyle, + int x, + int y, + int nWidth, + int nHeight, + HWND hWndParent, + HMENU hMenu, + HINSTANCE hInstance, + LPVOID lpParam + ) = 0; + + virtual ATOM RegisterClassW + ( + CONST WNDCLASSW *lpWndClass + ) = 0; + + virtual BOOL UnregisterClassW + ( + LPCWSTR lpClassName, + HINSTANCE hInstance + ) = 0; +}; + +#define VENGINE_UNICODEINTERFACE_VERSION "VENGINEUNICODE001" + + +#endif // UNICODE_H |