CmPlatformWndProc.h 496 B

123456789101112131415161718
  1. #pragma once
  2. #include "CmPlatform.h"
  3. #include "CmWin32Defs.h"
  4. namespace CamelotFramework
  5. {
  6. class CM_EXPORT PlatformWndProc : public Platform
  7. {
  8. public:
  9. static LRESULT CALLBACK _win32WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  10. private:
  11. static UINT32 mMoveResizeMouseUpState; // 0 - Didn't receive and not waiting for mouse up, 1 - Awaiting mouse up, 2 - Received mouse up
  12. static LRESULT translateNonClientAreaType(NonClientAreaBorderType type);
  13. };
  14. }