Welcome to mirror list, hosted at ThFree Co, Russian Federation.

os_is64bit.c « host « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 313475123b64aa7a9108c285fbb6e4ca20618d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * \file   os_is64bit.c
 * \brief  Native code-side checking for a 64-bit architecture.
 * \author Copyright (c) 2011 Jason Perkins and the Premake project
 */

#include "premake.h"

int os_is64bit(lua_State* L)
{
	// If this code returns true, then the platform is 64-bit. If it
	// returns false, the platform might still be 64-bit, but more 
	// checking will need to be done on the Lua side of things.
#if PLATFORM_WINDOWS
	typedef BOOL (WINAPI* WowFuncSig)(HANDLE, PBOOL);
	WowFuncSig func = (WowFuncSig)GetProcAddress(GetModuleHandle(TEXT("kernel32")), "IsWow64Process");
	if (func)
	{
		BOOL isWow = FALSE;
		if (func(GetCurrentProcess(), &isWow))
		{
			lua_pushboolean(L, isWow);
			return 1;
		}
	}
#endif

	lua_pushboolean(L, 0);
	return 1;
}