Elevate Engine 1
Loading...
Searching...
No Matches
WindowsPlatform.cpp
Go to the documentation of this file.
2
3#ifdef EE_PLATFORM_WINDOWS
4
5#include <Windows.h>
6#include <shellapi.h>
7
8namespace Elevate::Platform
9{
10 void OpenURL(const std::string& url)
11 {
12 ShellExecuteA(NULL, "open", url.c_str(), NULL, NULL, SW_SHOWNORMAL);
13 }
14}
15
16#endif
void OpenURL(const std::string &url)