forked from ufrisk/MemProcFS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
134 additions
and
16 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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// (c) Ulf Frisk, 2018-2019 | ||
// Author: Ulf Frisk, [email protected] | ||
// | ||
// Header Version: 2.1 | ||
// Header Version: 2.2 | ||
// | ||
|
||
#include <windows.h> | ||
|
@@ -50,6 +50,17 @@ BOOL VMMDLL_Initialize(_In_ DWORD argc, _In_ LPSTR argv[]); | |
_Success_(return) | ||
BOOL VMMDLL_Close(); | ||
|
||
/* | ||
* Perform a force refresh of all internal caches including: | ||
* - process listings | ||
* - memory cache | ||
* - page table cache | ||
* WARNING: function may take some time to execute! | ||
* -- dwReserved = reserved future use - must be zero | ||
* -- return = sucess/fail | ||
*/ | ||
_Success_(return) | ||
BOOL VMMDLL_Refresh(_In_ DWORD dwReserved); | ||
|
||
|
||
//----------------------------------------------------------------------------- | ||
|
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
Binary file not shown.
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ LIBRARY VMM | |
EXPORTS | ||
VMMDLL_Initialize | ||
VMMDLL_Close | ||
VMMDLL_Refresh | ||
|
||
VMMDLL_ConfigGet | ||
VMMDLL_ConfigSet | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// (c) Ulf Frisk, 2018-2019 | ||
// Author: Ulf Frisk, [email protected] | ||
// | ||
// Header Version: 2.1 | ||
// Header Version: 2.2 | ||
// | ||
|
||
#include <windows.h> | ||
|
@@ -50,6 +50,17 @@ BOOL VMMDLL_Initialize(_In_ DWORD argc, _In_ LPSTR argv[]); | |
_Success_(return) | ||
BOOL VMMDLL_Close(); | ||
|
||
/* | ||
* Perform a force refresh of all internal caches including: | ||
* - process listings | ||
* - memory cache | ||
* - page table cache | ||
* WARNING: function may take some time to execute! | ||
* -- dwReserved = reserved future use - must be zero | ||
* -- return = sucess/fail | ||
*/ | ||
_Success_(return) | ||
BOOL VMMDLL_Refresh(_In_ DWORD dwReserved); | ||
|
||
|
||
//----------------------------------------------------------------------------- | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// (c) Ulf Frisk, 2018-2019 | ||
// Author: Ulf Frisk, [email protected] | ||
// | ||
// Header Version: 2.1 | ||
// Header Version: 2.2 | ||
// | ||
|
||
#include <windows.h> | ||
|
@@ -50,6 +50,17 @@ BOOL VMMDLL_Initialize(_In_ DWORD argc, _In_ LPSTR argv[]); | |
_Success_(return) | ||
BOOL VMMDLL_Close(); | ||
|
||
/* | ||
* Perform a force refresh of all internal caches including: | ||
* - process listings | ||
* - memory cache | ||
* - page table cache | ||
* WARNING: function may take some time to execute! | ||
* -- dwReserved = reserved future use - must be zero | ||
* -- return = sucess/fail | ||
*/ | ||
_Success_(return) | ||
BOOL VMMDLL_Refresh(_In_ DWORD dwReserved); | ||
|
||
|
||
//----------------------------------------------------------------------------- | ||
|
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