Windows: Fixes bad structure member in callbacks

This fixes a bug in the x64 callbacks symbols. The `NotificationRoutine`
is currently an `unsigned int` instead of a void pointer. This prevents
the correct mapping of the notification routine to the kernel module
that contains it.
This commit is contained in:
David McDonald
2024-07-29 17:55:56 -05:00
parent 721971652c
commit ba7ec00599
@@ -105,8 +105,11 @@
},
"NotificationRoutine": {
"type": {
"kind": "base",
"name": "unsigned int"
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 24
}