summaryrefslogtreecommitdiff
path: root/Editor/Utils/HelperFuncs.h
blob: 626e48f0bce22f6f686ca1cdc4191db5f80c3129 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <iostream>
#include <windows.h>

std::string to_string(const char* cstr);

extern void PrintCallStack();

#define GET_X_LPARAM(lp)  ((int)(short)LOWORD(lp))
#define GET_Y_LPARAM(lp)  ((int)(short)HIWORD(lp))