1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/prod_include/opendx.h

15 lines
352 B
C
Raw Permalink Normal View History

2023-07-29 21:03:57 -03:00
#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;
};