会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Ajanuw
做自己的King
博客园
首页
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
40
下一页
2020年9月27日
c++ 遍历当前程序的线程
摘要: #include <iostream> #include <Windows.h> #include <Psapi.h> #include <TlHelp32.h> HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, GetCurren
阅读全文
posted @ 2020-09-27 13:46 Ajanuw
阅读(641)
评论(0)
推荐(0)
2020年9月26日
nasm astrlwr_s函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrlwr_s dllmain: mov eax,1 ret 12 ; ; ; 将字符串转换为小写 ;
阅读全文
posted @ 2020-09-26 20:05 Ajanuw
阅读(247)
评论(0)
推荐(0)
nasm astricmp函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astricmp dllmain: mov eax,1 ret 12 ; ; ; 对字符串(char)进
阅读全文
posted @ 2020-09-26 14:58 Ajanuw
阅读(184)
评论(0)
推荐(0)
nasm astrcspn函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrcspn dllmain: mov eax,1 ret 12 ; ; ; 返回属于一组字符的字符在
阅读全文
posted @ 2020-09-26 13:40 Ajanuw
阅读(168)
评论(0)
推荐(0)
2020年9月25日
ffmpeg concat设置绝对路径
摘要: https://superuser.com/questions/718027/ffmpeg-concat-doesnt-work-with-absolute-path/1551017#1551017 m.txt: file 'file:D:/video/000.ts' file 'file:D:/v
阅读全文
posted @ 2020-09-25 12:19 Ajanuw
阅读(1076)
评论(0)
推荐(0)
2020年9月24日
nasm astrcpy_s函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrcpy_s dllmain: mov eax,1 ret 12 astrcpy_s: push e
阅读全文
posted @ 2020-09-24 13:56 Ajanuw
阅读(132)
评论(0)
推荐(0)
nasm astrcmp函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrcmp dllmain: mov eax,1 ret 12 astrcmp: push ebp
阅读全文
posted @ 2020-09-24 13:14 Ajanuw
阅读(167)
评论(0)
推荐(0)
nasm astrchr函数 x86
摘要: xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrchr dllmain: mov eax,1 ret 12 astrchr: push ebp
阅读全文
posted @ 2020-09-24 12:37 Ajanuw
阅读(159)
评论(0)
推荐(0)
2020年9月23日
C-Sharp 调用命令行
摘要: https://stackoverflow.com/questions/1469764/run-command-prompt-commands 带控制台 string strCmdText = "/C ffplay \"D:\\dynamic wallpaper\\2.mp4\""; System.
阅读全文
posted @ 2020-09-23 21:05 Ajanuw
阅读(397)
评论(0)
推荐(0)
nasm astrcat_s函数 x86
摘要: xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export astrcat_s dllmain: mov eax,1 ret 12 astrcat_s: push e
阅读全文
posted @ 2020-09-23 19:38 Ajanuw
阅读(138)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
40
下一页