上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 40 下一页
摘要: 测试环境是x86 main #include <iostream> #include <Windows.h> #include <TlHelp32.h> #include <string.h> using namespace std; const string processName = "game 阅读全文
posted @ 2020-08-20 18:00 Ajanuw 阅读(445) 评论(0) 推荐(0) 编辑
摘要: main.dart import 'dart:io'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'package:path_provider/path_provid 阅读全文
posted @ 2020-08-09 14:15 Ajanuw 阅读(1503) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <Windows.h> #include <TlHelp32.h> using namespace std; typedef int(__stdcall* FUN1)(); FUN1 fun1; int main() { BYTE* newm 阅读全文
posted @ 2020-08-08 13:44 Ajanuw 阅读(396) 评论(0) 推荐(0) 编辑
摘要: a.asm global Start section .text inc dword [esi] push edi mov edi,[esp+0x14] λ nasm -f win32 a.asm -l a.lst 1 global Start 2 section .text 3 00000000 阅读全文
posted @ 2020-08-05 23:34 Ajanuw 阅读(317) 评论(0) 推荐(0) 编辑
摘要: int MyPlayTread2(const char* name) { cout << name << endl; return 0; } string s = "string"; s += " suo"; char* a = new char[s.size() + 1]; a[s.size()] 阅读全文
posted @ 2020-08-04 09:32 Ajanuw 阅读(286) 评论(0) 推荐(0) 编辑
摘要: Pointers 在getchar处断点,断点后,调试->窗口->反汇编 查看数据 main #include <iostream> #include <Windows.h> /* Player : object Name : string Health : integer Coins : inte 阅读全文
posted @ 2020-08-01 19:33 Ajanuw 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 上家邀请下家,会在生成的二维码中携带上家id,当下家扫码进入小程序指定页面,接收上家id发送给后端 在 h5 和 wxapp 中 生成qrcode的组件 https://ext.dcloud.net.cn/plugin?id=39 wx小程序扫二位码文档 生成链接时 computed: { ...m 阅读全文
posted @ 2020-07-26 12:04 Ajanuw 阅读(2945) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1053296/202107/1053296-20210731214049468-1727176028.png) - 开发文档 https://lbs.amap.com/api - 错误状态 https://lbs.amap. 阅读全文
posted @ 2020-07-23 10:55 Ajanuw 阅读(3486) 评论(0) 推荐(0) 编辑
摘要: 类似CE的read/writeIntger函数(外部) 完整版项目在这里 #include <iostream> #include <Windows.h> #include <TlHelp32.h> #include <vector> #include <regex> #include <sstre 阅读全文
posted @ 2020-07-22 15:16 Ajanuw 阅读(189) 评论(0) 推荐(1) 编辑
摘要: #include <string> #include <vector> #include <regex> struct SplitListItem { std::string key; std::string value; }; std::vector<SplitListItem> splitStr 阅读全文
posted @ 2020-07-22 13:54 Ajanuw 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 40 下一页