diff --git a/meson.build b/meson.build index 6218a9d..a9c33dd 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,6 @@ executable( ], include_directories: ['.'], dependencies: [ - dependency('openmp'), winmm, ], ) \ No newline at end of file diff --git a/src/main.c b/src/main.c index c56d4da..95d624e 100644 --- a/src/main.c +++ b/src/main.c @@ -49,14 +49,6 @@ int main() cmdMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING; SetConsoleMode(cmd, cmdMode); - // Get %TEMP% path - char tempPathDir[MAX_PATH]; - GetTempPath2(MAX_PATH, tempPathDir); - - // Get temporary name - char resPath[MAX_PATH]; - GetTempFileName(tempPathDir, TEXT("virus"), 0, resPath); - // Get the current module handle HMODULE thisExe = GetModuleHandle(NULL);