-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
port to MetaHookSv and add support for the new HL25 engine
- Loading branch information
Showing
16 changed files
with
796 additions
and
239 deletions.
There are no files selected for viewing
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
Submodule MetaHookSv
added at
a22041
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
#pragma once | ||
|
||
typedef struct | ||
{ | ||
}aud_export_t; | ||
|
||
extern aud_export_t gAudExports; | ||
|
||
#define META_AUDIO_VERSION "Meta Audio Version: 92b7efb1ffebb94e3d20ed89f6dd72b50264b16f" |
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,12 +1,16 @@ | ||
class IFileSystem; | ||
|
||
extern HINSTANCE g_hInstance, g_hThisModule, g_hEngineModule; | ||
extern DWORD g_dwEngineBase, g_dwEngineSize; | ||
extern PVOID g_dwEngineBase; | ||
extern DWORD g_dwEngineSize; | ||
extern PVOID g_dwEngineTextBase; | ||
extern DWORD g_dwEngineTextSize; | ||
extern PVOID g_dwEngineDataBase; | ||
extern DWORD g_dwEngineDataSize; | ||
extern PVOID g_dwEngineRdataBase; | ||
extern DWORD g_dwEngineRdataSize; | ||
extern DWORD g_dwEngineBuildnum; | ||
extern DWORD g_iVideoMode; | ||
extern bool g_bIsNewEngine; | ||
extern int g_iVideoWidth, g_iVideoHeight; | ||
extern bool g_bWindowed; | ||
extern bool g_bIsDebuggerPresent; | ||
extern IFileSystem *g_pFileSystem; | ||
extern int g_fExternalLoad; | ||
extern int g_iEngineType; | ||
|
||
extern IFileSystem* g_pFileSystem; | ||
extern IFileSystem_HL25* g_pFileSystem_HL25; |
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
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
Oops, something went wrong.