BlitzSteam update 06.02.2016

This commit is contained in:
Michael Dirks
2016-02-06 00:17:29 +01:00
parent d6ef2b46f0
commit 0ebbd7e9a0
38 changed files with 1871 additions and 787 deletions
+6 -6
View File
@@ -14,13 +14,13 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "dllmain.h"
#pragma once
typedef uint32_t(__stdcall *BP_Function0_t)();
typedef uint32_t(__stdcall *BP_Function1_t)(uint32_t);
typedef uint32_t(__stdcall *BP_Function2_t)(uint32_t, uint32_t);
typedef uint32_t(__stdcall *BP_Function3_t)(uint32_t, uint32_t, uint32_t);
typedef uint32_t(__stdcall *BP_Function4_t)(uint32_t, uint32_t, uint32_t, uint32_t);
typedef void*(__stdcall *BP_Function0_t)();
typedef void*(__stdcall *BP_Function1_t)(uint32_t);
typedef void*(__stdcall *BP_Function2_t)(uint32_t, uint32_t);
typedef void*(__stdcall *BP_Function3_t)(uint32_t, uint32_t, uint32_t);
typedef void*(__stdcall *BP_Function4_t)(uint32_t, uint32_t, uint32_t, uint32_t);
#define BP_CallFunction0(ptr) ((BP_Function0_t)ptr)()
#define BP_CallFunction1(ptr, p1) ((BP_Function1_t)ptr)(p1)