diff options
| author | Stefan Boberg <[email protected]> | 2023-12-07 12:31:14 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-12-07 12:31:14 +0100 |
| commit | 7df315c62470e86381adb3a2c1dc79fd1099e1fc (patch) | |
| tree | a72111d091824b6942a86696853124193e5ce4e2 /src/zentrack/zentrack.cpp | |
| parent | implemented FlushDataOnly for MacOS (diff) | |
| download | zen-7df315c62470e86381adb3a2c1dc79fd1099e1fc.tar.xz zen-7df315c62470e86381adb3a2c1dc79fd1099e1fc.zip | |
cleaned up some naming
Diffstat (limited to 'src/zentrack/zentrack.cpp')
| -rw-r--r-- | src/zentrack/zentrack.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zentrack/zentrack.cpp b/src/zentrack/zentrack.cpp index b340bf0a3..5b0a248f2 100644 --- a/src/zentrack/zentrack.cpp +++ b/src/zentrack/zentrack.cpp @@ -35,9 +35,9 @@ TerminateCurrentProcess(uint32_t ExitCode) TerminateProcess(GetCurrentProcess(), ExitCode); } -# define DETOURED_FUNCTION(func) \ - using Symbol_##func = decltype(func); \ - Symbol_##func* Real_##func; +# define DETOURED_FUNCTION(func) \ + using Decl_##func = decltype(func); \ + Decl_##func* Real_##func; DETOURED_FUNCTIONS # undef DETOURED_FUNCTION |