C++ vector

2020-11-16
https://www.tuhaoxin.cn/articles/2019/05/07/1557238845847.html
查看

string_format

2020-11-13
包含头文件 #include <memory> string template<typename ... Args> static std::string str_format(const std::string&a...
查看

vmprotect命令行用法

2020-11-13
官方提示使用方法 vmprotect_con File [Output File] [-pf Project File] [-sf Script File] [-lf Licensing parameters file] [-bd Buil...
查看

禁止重复运行

2020-11-12
HANDLE hMutex; //全局 hMutex = CreateMutex(NULL,FALSE,_T("ArwenApp")); if(GetLastError() == ERROR_ALREADY_EX...
查看

C++自定义编译期警告和错误信息

2020-11-12
/** Transform expression \a _exp_ to string format. */ #define __AUX_STR_EXP(_exp_) #_exp_ /** Transf...
查看

突破Session0隔离在系统服务程序中创建用户桌面进程

2020-11-12
https://www.write-bug.com/article/2006.html
查看

获取当前系统的语言环境

2020-11-11
#include <windows.h> #include <iostream> using namespace std; int main() { LCID lcid = GetSystemDefaultLCI...
查看

服务创建用户进程

2020-11-11
HANDLE CTcpClientRaw::CreateUserProcessParent(LPCTSTR lpszFileName, LPCTSTR lpCommandLine, LPCTSTR lpParentProcessName, ...
查看

debug调试打印日志[printf(),OutputDebugString()]

2020-11-04
#ifdef _DEBUG inline char* getDateTime() { static char nowtime[20]; time_t rawtime; struct tm* ltime; time(&rawt...
查看

ptrdiff_t

2020-11-04
int => ptrdiff_t usigned int => size_t
查看