Skip to content

Commit

Permalink
Merge pull request #103 from ddkwork/main
Browse files Browse the repository at this point in the history
Bind gen
  • Loading branch information
ddkwork authored Jun 20, 2024
2 parents 00a3a9f + 9ec5df6 commit de2c660
Show file tree
Hide file tree
Showing 83 changed files with 11,410 additions and 8,117 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
log.log
.idea
reset git.cmd
*.json
*.pdb
*.exp
*.lib
cmake-build-debug
Stdout.log
*.log
reset git.cmd
cmake-build-debug
32 changes: 16 additions & 16 deletions bin/debug/SDK/Headers/BasicTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,19 +129,19 @@ typedef struct _SCRIPT_ENGINE_VARIABLES_LIST
* @brief CR3 Structure
*
*/
//typedef struct _CR3_TYPE
//{
// union
// {
// UINT64 Flags;
//
// struct
// {
// UINT64 Pcid : 12;
// UINT64 PageFrameNumber : 36;
// UINT64 Reserved1 : 12;
// UINT64 Reserved_2 : 3;
// UINT64 PcidInvalidate : 1;
// } Fields;
// };
//} CR3_TYPE, *PCR3_TYPE;
typedef struct _CR3_TYPE
{
union
{
UINT64 Flags;

struct
{
UINT64 Pcid : 12;
UINT64 PageFrameNumber : 36;
UINT64 Reserved1 : 12;
UINT64 Reserved_2 : 3;
UINT64 PcidInvalidate : 1;
} Fields;
};
} CR3_TYPE, *PCR3_TYPE;
Loading

0 comments on commit de2c660

Please sign in to comment.