
C++
wdpforinter
人生的奋斗就是为了过去吹过的牛逼和将来的吹牛逼,总之一切都是为了吹牛逼。
展开
-
windows C++守护进程实现
#include "stdafx.h"#include <iostream>#include <windows.h>#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"") //隐藏控制台窗口using namespace std;char* cmd = "./test.exe";int main(){ STARTUPINFO si; PROCESS_INFOR.原创 2021-04-20 14:32:48 · 776 阅读 · 0 评论 -
linaro
**https://releases.linaro.org/components/toolchain原创 2021-03-16 13:01:45 · 509 阅读 · 0 评论 -
C++ 实现删除自己
#include <shellapi.h>#include <ShlObj.h>void DeleteAppSelf(){ char szCommandLine[MAX_PATH + 10] = { 0 }; SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); SetThreadPriority(GetCurrentProcess(), THREAD_PRIORITY_TIME_CRITICAL原创 2020-10-28 16:40:23 · 1942 阅读 · 0 评论