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
bool CSteamInterfaces::BindInterfaces(IGameConfig *pGameConfig, char *pszError, size_t nMaxLength) | |
{ | |
if (m_bLoaded || m_ppSteamClient) | |
return true; | |
if (!pGameConfig) | |
{ | |
if (pszError) | |
g_pSM->Format(pszError, nMaxLength, "NULL IGameConfig param passed"); | |
return false; |
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
"Games" | |
{ | |
"tf" | |
{ | |
"Offsets" | |
{ | |
"CountActivePlayers" | |
{ | |
"windows" "207" | |
"linux" "208" |
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
enum Platform | |
{ | |
Platform_Invalid, | |
Platform_Windows, | |
Platform_Linux, | |
Platform_Mac | |
} | |
Platform:GetPlatform() | |
{ |
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
"Games" | |
{ | |
"#default" | |
{ | |
"Offsets" | |
{ | |
"TeleporterThink" | |
{ | |
"windows" "155" | |
"linux" "323" |
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
#include <windows.h> | |
#include "client/windows/handler/exception_handler.h" | |
using namespace google_breakpad; | |
ExceptionHandler *g_pExceptionHandler = NULL; | |
BOOL APIENTRY DllMain( | |
HINSTANCE hinstDLL, |
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
#pragma semicolon 1 | |
#include <sourcemod> | |
enum | |
{ | |
OpCode_1_JZ = 0x74, | |
OpCode_1_JMP = 0xEB, | |
} | |
new Handle:g_hGameConf = INVALID_HANDLE; |
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
<?php | |
class SplexSourcePawnEngine extends DivinerEngine { | |
public function buildFileContentHashes() { | |
$files = array(); | |
$root = $this->getConfiguration()->getProjectRoot(); | |
$finder = new FileFinder($root); | |
$finder |
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
[Service] | |
Type=forking | |
ExecStart=/var/www/phabricator/phabricator/bin/phd start | |
ExecStop=/var/www/phabricator/phabricator/bin/phd stop | |
StandardOutput=syslog | |
SyslogIdentifier=phabricator | |
User=apache | |
Group=apache | |
[Install] |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title></title> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css"> |
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
#pragma semicolon 1 | |
// spshell crap | |
forward void main(); | |
native void print(const char[] string); | |
native void printnums(...); | |
void int64tohex(char buffer[20], const int high, const int low) | |
{ | |
static char table[] = "0123456789abcdef"; |
OlderNewer