Skip to content

Commit

Permalink
Update compiler and includes to version 1.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelgeby committed Mar 21, 2015
1 parent 743d17e commit 5ec3694
Show file tree
Hide file tree
Showing 54 changed files with 4,088 additions and 1,600 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
SOURCEDIR=src
SMINCLUDES=env/include
BUILDDIR=build
SPCOMP_LINUX=env/linux/bin/spcomp-1.6.0
SPCOMP_DARWIN=env/darwin/bin/spcomp-1.6.0
SPCOMP_LINUX=env/linux/bin/spcomp-1.7.0
SPCOMP_DARWIN=env/darwin/bin/spcomp-1.7.0
DOS2UNIX_LINUX=dos2unix -p
DOS2UNIX_DARWIN=env/darwin/bin/dos2unix -p
VERSIONDUMP=./updateversion.sh
Expand Down
2 changes: 1 addition & 1 deletion compile.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set SOURCEDIR=src
set SMINCLUDES=env\include
set BUILDDIR=build
set SPCOMP=env\win32\bin\spcomp-1.6.0.exe
set SPCOMP=env\win32\bin\spcomp-1.7.0.exe
set VERSIONDUMP=updateversion.bat

:: Dump version and revision information first.
Expand Down
Binary file added env/darwin/bin/spcomp-1.7.0
Binary file not shown.
2 changes: 1 addition & 1 deletion env/include/admin.inc
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ native GetAdminUsername(AdminId:id, String:name[], maxlength);
* @param auth Auth method to use, predefined or from RegisterAuthIdentType().
* @param ident String containing the arbitrary, unique identity.
* @return True on success, false if the auth method was not found,
* or ident was already taken.
* ident was already taken, or ident invalid for auth method.
*/
native bool:BindAdminIdentity(AdminId:id, const String:auth[], const String:ident[]);

Expand Down
6 changes: 3 additions & 3 deletions env/include/adminmenu.inc
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,23 @@
* @param topmenu Handle to the admin menu's TopMenu.
* @noreturn
*/
forward OnAdminMenuCreated(Handle:topmenu);
forward OnAdminMenuCreated(Handle topmenu);

/**
* Called when the admin menu is ready to have items added.
*
* @param topmenu Handle to the admin menu's TopMenu.
* @noreturn
*/
forward OnAdminMenuReady(Handle:topmenu);
forward OnAdminMenuReady(Handle topmenu);

/**
* Retrieves the Handle to the admin top menu.
*
* @return Handle to the admin menu's TopMenu,
* or INVALID_HANDLE if not created yet.
*/
native Handle:GetAdminTopMenu();
native TopMenu GetAdminTopMenu();

/**
* Adds targets to an admin menu.
Expand Down

0 comments on commit 5ec3694

Please sign in to comment.