mirror of
https://github.com/klezVirus/DriverJack
synced 2026-06-06 16:04:32 +00:00
14 lines
315 B
C++
14 lines
315 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include <string>
|
|
#include <ctime>
|
|
|
|
#ifndef STRINGUTILS_H
|
|
#define STRINGUTILS_H
|
|
|
|
LPCWSTR AnsiToWide(const char* ansiString);
|
|
DWORD ExtractNumberFromPath(PWSTR path);
|
|
std::string gen_random(const int len);
|
|
bool isValidFileName(const std::string& fileName);
|
|
|
|
#endif // !STRINGUTILS_H
|