mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-24 00:25:34 +08:00
Fetch dwInputSystem
This commit is contained in:
parent
9b1ab48d3e
commit
56f3255151
10
config.json
10
config.json
@ -212,6 +212,16 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "dwInputSystem",
|
||||||
|
"module": "inputsystem.dll",
|
||||||
|
"pattern": "48 89 05 ? ? ? ? 48 8D 05",
|
||||||
|
"operations": [
|
||||||
|
{
|
||||||
|
"type": "ripRelative"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "dwInterfaceLinkList",
|
"name": "dwInterfaceLinkList",
|
||||||
"module": "client.dll",
|
"module": "client.dll",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Created using https://github.com/a2x/cs2-dumper
|
* Created using https://github.com/a2x/cs2-dumper
|
||||||
* Fri, 27 Oct 2023 01:03:39 +0000
|
* Mon, 30 Oct 2023 00:17:09 +0000
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public static class client_dll { // client.dll
|
public static class client_dll { // client.dll
|
||||||
@ -37,4 +37,8 @@ public static class engine2_dll { // engine2.dll
|
|||||||
public const nint dwNetworkGameClient_signOnState = 0x240;
|
public const nint dwNetworkGameClient_signOnState = 0x240;
|
||||||
public const nint dwWindowHeight = 0x5396DC;
|
public const nint dwWindowHeight = 0x5396DC;
|
||||||
public const nint dwWindowWidth = 0x5396D8;
|
public const nint dwWindowWidth = 0x5396D8;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class inputsystem_dll { // inputsystem.dll
|
||||||
|
public const nint dwInputSystem = 0x35770;
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Created using https://github.com/a2x/cs2-dumper
|
* Created using https://github.com/a2x/cs2-dumper
|
||||||
* Fri, 27 Oct 2023 01:03:39 +0000
|
* Mon, 30 Oct 2023 00:17:09 +0000
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@ -41,4 +41,8 @@ namespace engine2_dll { // engine2.dll
|
|||||||
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x240;
|
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x240;
|
||||||
constexpr std::ptrdiff_t dwWindowHeight = 0x5396DC;
|
constexpr std::ptrdiff_t dwWindowHeight = 0x5396DC;
|
||||||
constexpr std::ptrdiff_t dwWindowWidth = 0x5396D8;
|
constexpr std::ptrdiff_t dwWindowWidth = 0x5396D8;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace inputsystem_dll { // inputsystem.dll
|
||||||
|
constexpr std::ptrdiff_t dwInputSystem = 0x35770;
|
||||||
}
|
}
|
@ -128,5 +128,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"comment": "engine2.dll"
|
"comment": "engine2.dll"
|
||||||
|
},
|
||||||
|
"inputsystem_dll": {
|
||||||
|
"data": {
|
||||||
|
"dwInputSystem": {
|
||||||
|
"value": 218992,
|
||||||
|
"comment": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"comment": "inputsystem.dll"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
'''
|
'''
|
||||||
Created using https://github.com/a2x/cs2-dumper
|
Created using https://github.com/a2x/cs2-dumper
|
||||||
Fri, 27 Oct 2023 01:03:39 +0000
|
Mon, 30 Oct 2023 00:17:09 +0000
|
||||||
'''
|
'''
|
||||||
|
|
||||||
class client_dll: # client.dll
|
class client_dll: # client.dll
|
||||||
@ -36,3 +36,6 @@ class engine2_dll: # engine2.dll
|
|||||||
dwNetworkGameClient_signOnState = 0x240
|
dwNetworkGameClient_signOnState = 0x240
|
||||||
dwWindowHeight = 0x5396DC
|
dwWindowHeight = 0x5396DC
|
||||||
dwWindowWidth = 0x5396D8
|
dwWindowWidth = 0x5396D8
|
||||||
|
|
||||||
|
class inputsystem_dll: # inputsystem.dll
|
||||||
|
dwInputSystem = 0x35770
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Created using https://github.com/a2x/cs2-dumper
|
* Created using https://github.com/a2x/cs2-dumper
|
||||||
* Fri, 27 Oct 2023 01:03:39 +0000
|
* Mon, 30 Oct 2023 00:17:09 +0000
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#![allow(non_snake_case, non_upper_case_globals)]
|
#![allow(non_snake_case, non_upper_case_globals)]
|
||||||
@ -39,4 +39,8 @@ pub mod engine2_dll { // engine2.dll
|
|||||||
pub const dwNetworkGameClient_signOnState: usize = 0x240;
|
pub const dwNetworkGameClient_signOnState: usize = 0x240;
|
||||||
pub const dwWindowHeight: usize = 0x5396DC;
|
pub const dwWindowHeight: usize = 0x5396DC;
|
||||||
pub const dwWindowWidth: usize = 0x5396D8;
|
pub const dwWindowWidth: usize = 0x5396D8;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub mod inputsystem_dll { // inputsystem.dll
|
||||||
|
pub const dwInputSystem: usize = 0x35770;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user