mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
15 lines
352 B
C++
15 lines
352 B
C++
#pragma once
|
|
#include <windows.h>
|
|
|
|
/**
|
|
* @brief OpenDX utility class
|
|
*/
|
|
class OpenDX {
|
|
public:
|
|
OpenDX(int argc, char* argv[],int (*WinMain)(HINSTANCE, HINSTANCE, LPSTR, int) = nullptr);
|
|
OpenDX(int (*WinMain)(HINSTANCE, HINSTANCE, LPSTR, int) = nullptr);
|
|
int getReturnCode();
|
|
|
|
private:
|
|
int winMain_r = 0;
|
|
}; |