mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
Changes: modified: CMakeLists.txt new file: libs/dsetup/README.md new file: libs/dsetup/dsetup.cpp new file: libs/dsetup/dsetup.hpp new file: libs/dsetup/fun/DirectXSetupGetVersion.cpp new file: libs/dsetup/fun/DirectXSetupGetVersion.hpp
17 lines
392 B
C++
17 lines
392 B
C++
#include "DirectXSetupGetVersion.hpp"
|
|
|
|
/**
|
|
* @brief Get DirectX version
|
|
*
|
|
* @todo Implement this function
|
|
* * @see https://github.com/EduApps-CDG/OpenDX/wiki/dsetup.dll-or-libdsetup.so#int-directxsetupgetversiondword-dword
|
|
*
|
|
* @param ver
|
|
* @param rev
|
|
* @return int 1 (always?)
|
|
*/
|
|
int DirectXSetupGetVersion(DWORD* ver, DWORD* rev) {
|
|
*ver = 0;
|
|
*rev = 0;
|
|
return 1;
|
|
} |