forked from RomanKubiak/ctrlr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The current luabind/lua/boost mix causes exceptions to
crash Ctrlr instrad of handling them, need to fix that
- Loading branch information
1 parent
06c6f93
commit e7ccc06
Showing
149 changed files
with
14,393 additions
and
759 deletions.
There are no files selected for viewing
339 changes: 172 additions & 167 deletions
339
Builds/Generated/Windows/Standalone_2015/Ctrlr_Standalone.vcxproj
Large diffs are not rendered by default.
Oops, something went wrong.
882 changes: 458 additions & 424 deletions
882
Builds/Generated/Windows/Standalone_2015/Ctrlr_Standalone.vcxproj.filters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef __CTRLR_REVISION__ | ||
#define __CTRLR_REVISION__ | ||
|
||
static const char *ctrlrRevision = "0.0.0"; | ||
static const char *ctrlrRevisionDate = "Satans Birthday 666"; | ||
static const char *ctrlrRevision = "5.4.24"; | ||
static const char *ctrlrRevisionDate = "Mon Dec 12 19:19:32 CEST 2016"; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,8 @@ | ||
#include "lua.h" | ||
#include "lauxlib.h" | ||
|
||
/****************************************************************************/ | ||
|
||
#if LUA_VERSION_NUM>=502 | ||
|
||
int typeerror(lua_State* L, int narg, const char* tname); | ||
#define setfuncs luaL_setfuncs | ||
#define setuservalue lua_setuservalue | ||
#define getuservalue lua_getuservalue | ||
|
||
#elif LUA_VERSION_NUM==501 | ||
|
||
#define typeerror luaL_typerror | ||
void setfuncs(lua_State* L, const luaL_Reg* l, int nup); | ||
#define setuservalue lua_setfenv | ||
#define getuservalue lua_getfenv | ||
|
||
#endif | ||
|
||
#include "lua.h" | ||
#include "lauxlib.h" | ||
|
||
|
||
int typeerror(lua_State* L, int narg, const char* tname); | ||
#define setfuncs luaL_setfuncs | ||
#define setuservalue lua_setuservalue | ||
#define getuservalue lua_getuservalue |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include "lua.h" | ||
#include "compat.h" | ||
|
||
int typeerror(lua_State* L, int narg, const char* tname) | ||
{ | ||
const char* msg = lua_pushfstring(L, "%s expected, got %s", tname, luaL_typename(L, narg)); | ||
return luaL_argerror(L, narg, msg); | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.