exefinder.h
来自「BVB杀毒软件的引擎代码,可以学习这种杀毒软件的核心 帮助自己设计杀毒软件」· C头文件 代码 · 共 26 行
H
26 行
#pragma once
#ifndef EXEFINDER_H
#define EXEFINDER_H
#include <string>
#include <windows.h>
#include <vector>
#include "Globals.h"
using namespace std;
class ExeFinder{
LPSTR ExeFinder::LPCWSTRtoLPSTR( LPCWSTR );
LPWSTR ExeFinder::LPSTRtoLPWSTR( LPCSTR );
string ExeFinder::capitalize( string );
vector<string> FileNames;
public:
int findAllExecutables( string, bool, bool, bool );
vector<string> getExecutableVector( void );
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?