E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
stdafx.h
【逆向知识】裸函数(Naked函数)
//#include"
stdafx.h
"//两数相加函数intadd(intx,inty
weixin_30536513
·
2020-09-11 12:09
第一次接触C语言裸函数
先上代码:naked.cpp:#include"
stdafx.h
"extern"C"int__declspec(naked)add2(intx,inty)//引用说明支持跨文件的调用{__asm{//函数的环境初始化
weixin_30488313
·
2020-09-11 12:09
文章标题
//#include"
stdafx.h
"//返回值的类型函数的名(参数类型参数名,参数类型参数名)void_declspec(naked)Plus(){}voidPlus1(){}/
cotecsz
·
2020-09-11 12:59
逆向学习
空函数、裸函数与函数传参和堆栈平衡
1、C空函数的反汇编结构分析:以下面的代码为例,进行反汇编:#include"
stdafx.h
"//C
Apollon_krj
·
2020-09-11 12:57
C/C++
改变循环执行的状态,循环程序举例
//改变循环执行的状态1.用break语句提前终止循环#include"
stdafx.h
"#defineSUM100000//指定符号常量SUM代表100000int_tmain(intargc,_TCHAR
weixin_34319817
·
2020-09-11 11:07
OpenCV3_C++_ImageShow()显示图片 实例
article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include"
stdafx.h
橘子派
·
2020-09-11 10:55
Opencv3_C++
C++将图片转换为马赛克效果
依次处理每个小方块,即可实现马赛克效果原图2.整张图片处理成马赛克效果#include"
stdafx.h
"#include#defineN8intmain(){//Step1:加载图片IMAGEimage
小胡子V
·
2020-09-11 08:47
C++
虚函数、虚继承、sizeof
#include"
stdafx.h
"#includeusingnamespacestd;classA{public:A(){}A(inta):m_a(a){}virtualvoidprint(){cout
wangyangkobe
·
2020-09-11 04:09
c++和c
车牌识别 之 字符分割
直接贴代码:#include"
stdafx.h
"#include"cv.h"#include"highgui.h"usingnamespacestd;usingnamespacecv;IplImage*
MachineLP
·
2020-09-11 04:52
计算机视觉
opencv的第一份代码,及其makefile通用格式
opencv版本查看pkg-config--modversionopencv读取图片并显示的小程序//#include"
stdafx.h
"在Ubuntu中需要注释这个#include#include#include
乐观的自卑者
·
2020-09-11 03:17
makefile
opencv
线程池的计时器
#include"
stdafx.h
"#include#include#include#includeusingnamespacestd;voidCALLBACKTimeoutCallback(PTP_CALLBACK_INSTANCE
redeyerabbit
·
2020-09-11 03:19
windows
QMutex & QWaitCondition 小记!
//#include"
stdafx.h
"#include#include#inclu
piplu
·
2020-09-11 02:33
about
C++
学习&反省
ASCII码转UTF-8码
#include"
stdafx.h
"#include"StringBuffer.h"CStringUnicode2Ascii(WCHAR*in_str,intlength){BYTE*psz=(BYTE
paulwang5355
·
2020-09-11 02:27
VC
byte
include
N的加法组合问题
//#include"
stdafx.h
"#include#includeusingnamespacestd;#defineMIN(A,B)A>B?B:Avoidprint_list(std::
martin_liang
·
2020-09-11 02:31
C++/C
算法
一个正整数有可能可以被表示为n(n>=2)个连续正整数之和--算法求解
程序:环境vs2005#include"
stdafx.h
"#include#includeusingnamespacestd;//循环下限intG
jshouliang
·
2020-09-11 01:37
输出二叉树中所有从根结点到叶子结点的路径
#include"
stdafx.h
"#include#includeusingnamespacestd;structBTNode{charm_value;BTNode*m_left;BTNode*m_right
龙少爷_阿呆
·
2020-09-11 01:40
数据结构
win32中如何使用CString
在
StdAfx.h
中加入头文件#include"AFX.h",注意加在#include之前,编译后会发现BuildingMFCapplicationwith/MD[d](CRTdllversion)requiresMFCshareddllversion.Please
Nowindyli
·
2020-09-11 00:15
wince
用 C++实现的简单物流信息存储
说明:c++简单实现信息添加、显示、删除//wuliu.cpp:bylip//#include"
stdafx.h
"#include#include#include#include#include#includestructProduct
Just_Invoker
·
2020-09-11 00:26
技术杂文
Bicoloring
//#include"
stdafx.h
"constintMAX=200;usingnamespacestd;intgraph[MAX][MAX];intcolored[MAX]
Hilda_Chen
·
2020-09-10 23:51
C++
用C实现文件readLine函数
//#include"
stdafx.h
"#include"stdio.h"#include"stdlib.h"#defineMAX64boolreadword(FILE*fp,charwords[]){
FeelTouch
·
2020-09-10 23:35
数据结构-编程算法-技术思想
多点最小二乘法平面方程拟合计算与代码实现
要使得S最小,应满足:即:有,或,解上述线形方程组,得:即:其程序代码如下:#include“
stdafx.h
”#include#include#include#defineMAX10voidInverse
YuanYWRS
·
2020-09-10 21:46
激光雷达
c++三种传递函数参数和返回值的方法
//#include"
stdafx.h
"#includeusingnamespacestd;//通过传值来传入参数和传出返回值intFuncByValue(intx){x+=1;returnx;}//通过传指针来传入参数和传出返回值
cv_yuippe
·
2020-09-10 21:27
vc++
CPU大小端
//测试编译器是大端模式还是小端模式//x86一般为小端模式,ARM一般为小端模式,//KeilC51则为大端模式//有些ARM处理器可以由硬件来选择是大端还是小端模式#include"
stdafx.h
xiaojunjun1202
·
2020-09-10 21:44
小程序-利用递归判断数组是否递增
#include"
stdafx.h
"voidJudge(int*a,intn){if(n==1){printf("递增");}if(n!
屁啦啦小魔仙
·
2020-09-10 21:28
小程序
获取输入法输入内容及后选项的钩子
#include"
stdafx.h
"#include"windows.h"#include"imm.h"#include"stdio.h"#include#include#include#include
weixin_33845881
·
2020-09-10 19:39
一位素不相识的朋友做的代码雨屏保程序
//#include“
stdafx.h
”#include#defineID_TIMER1#defineSTRMAXLEN25//一个显示列的最大长度#defineSTRMINLEN8//一个显示列的最小长度
weixin_30898109
·
2020-09-10 19:16
链接两个循环单链表,并保持循环链表形式
#include"
stdafx.h
"#include#include#includetypedefinttype;typedefstructlnode//定义链表结点的数据结构{intdata;structlnode
vivi_and_qiao
·
2020-09-10 18:48
数据结构与算法
C++ 抛出并捕获多个异常
//#include"
stdafx.h
"#include#include#include#include#includeusingnamespacestd;/**抛出并捕获多个异常*/voidreadIntegerFile
_wjl_
·
2020-09-10 18:57
C++
C++获取进程启动参数
#include"
stdafx.h
"#include#include#defineProcessBasicInformation0typedefstruct{USHORTLength;USHORTMaximumLength
Colin91
·
2020-09-10 18:05
c/c++
对象数组的析构
#include"
stdafx.h
"intcount=0;classA{public:intnum;A(){count++;printf("创建:%d/n",count);}virtual~A(){printf
superleolx
·
2020-09-10 17:46
代码注入之傀儡进程
傀儡进程——Exe注入2009-09-1716:29#include"
stdafx.h
"#includetypedeflongNTSTATUS;typedefNTSTATUS(__stdcall*pfnZwUnmapViewOfSection
sevenpic
·
2020-09-10 17:55
windows编程
将对称矩阵压缩存储,实现矩阵相乘,输出相乘后结果(用二维数组)
一、没有数据结构里的数组做的#include"
stdafx.h
"#include#include#include#defineN2usingnamespacestd;//函数声明部分void
qq_28598203
·
2020-09-10 16:09
数据结构与算法设计
Skin++皮肤库使用步骤
2.VC++6.0工程属性设置--连接--对象/库模块中填入SkinPPWTL.lib或者使用代码:3.在工程的
stdafx.h
中引入SkinPPWTL.h头文件,并将其加入工程(Addf
phnumber
·
2020-09-10 15:06
C++程序设计
C++控制台程序 启动 控制台程序(以及命令行参数传递)
#include"
stdafx.h
"#include#include#include"
stdafx.h
"#include#includeintmain(intargc,char*argv[]){STARTUPINFOsi
nokianasty
·
2020-09-10 15:59
固高数控工作台的刀补插补程序开发(逐点比较法,数字积分法)
//毕业设计Dlg.cpp:implementationfile//#include"
stdafx.h
"#include"毕业设计.h"#include"毕业设
mikasoi
·
2020-09-10 15:07
算法
C++
MFC
项目备份
win32 application 添加按钮
//#include"
stdafx.h
"#include"resource.h"#defineMAX_LOADSTRING100//GlobalVariables:HINSTANCEhInst;//currentinstanceTCHARszTitle
luckyboy101
·
2020-09-10 15:37
vc
C/C++中函数参数传递详解
1//test.cpp:Definestheentrypointfortheconsoleapplication.2//34#include"
stdafx.h
"5#include67usingnamespacestd
lengyuyan007
·
2020-09-10 14:05
c++
线索二叉树的创建和遍历
#include"
stdafx.h
"#include#include#defineOK1#defineOVERFLOW-1#defineERROR0//线索二叉树结构的实现//typedefintStatus
haohulala
·
2020-09-10 13:40
数据结构
C语言版和JAVA版 把一个字节正序(高位在前)转为逆序(低位在前) 和 逆序转为正序
//#include"
stdafx.h
"//把一个字节高位在前转为低位在前unsignedcharByte_Change(unsignedcharter){unsignedchari=0;unsignedchart
小黄人软件
·
2020-09-10 12:22
java
error LNK2019: 无法解析的外部符…
Reason:学习使用socket,在
stdafx.h
文件加了#include,编译#include"
stdafx.h
"#includeusingnamespacestd;int_tmain(intargc
chanryma
·
2020-09-10 12:12
C/CPP
visual c++ 2015 使用ado.net例程, 向数据库表插入一行并查询行数。
#include#include#include"
stdafx.h
"#using#using#usingusingnamespaceSystem;usingnamespaceSystem::Data;usingnamespaceSystem
大米_小米
·
2020-09-10 12:48
ado.net
vc++2015
数据库操作
__stdcall、__cdcel、__fastcall、thiscall等关键字的作用
__stdcall、__cdcel、__fastcall、thiscall等关键字的作用#include"
stdafx.h
"#includeusingnamespacestd;#if0__stdcall
寂寂寂寂寂蝶丶
·
2020-09-10 12:57
函数调用方式(__cdecl、__stdcall、__fastcall等)
1//TestCall.cpp:Definestheentrypointfortheconsoleapplication.2//34#include"
stdafx.h
"5#include6#include789int
weixin_34410662
·
2020-09-10 10:56
Cover
#include"
stdafx.h
"#pragmawarning(disable:4996)#include#include#inc
weixin_30512785
·
2020-08-26 23:40
C++层次分析法一致性检验
//#include"
stdafx.h
"#include#include#includeusingnamespacestd;intmain(){cout>row;couta;for(size_ti=0;
钻石般的希望
·
2020-08-26 16:31
C++
leetcode179
//#include"
stdafx.h
"#include#include#include#define_CRT_NONSTDC_NO_DEPRECATE#define_CRT_SECURE_NO_WARNINGSintsubarraySum
fsfsfsdfsdfdr
·
2020-08-26 16:59
Leetcode
粒子滤波的程序
//#include"
stdafx.h
"#include"cv.h"#include"highgui.h"#include#include#include#include"cvAux.h"//粒子滤波所需的头文件
zht9961020
·
2020-08-26 16:05
图像处理
电子秤---乱码转格式
//#include"
stdafx.h
"char*GetResult(charstrlast[]);longChar2long(charstrres[]);char*getWeight(charresult
小杰博客
·
2020-08-26 16:04
c++
MFC
电子秤--快捷键版
CommWizardDlg.cpp//CommWizardDlg.cpp:implementationfile//#include"
stdafx.h
"#include"CommWizard.h"#include"CommWizardDlg.h
小杰博客
·
2020-08-26 16:04
c++
MFC
电子秤显示
//CommWizardDlg.cpp:implementationfile//#include"
stdafx.h
"#include"CommWizard.h"#include"CommWizardDlg.h
小杰博客
·
2020-08-26 16:04
c++
MFC
上一页
12
13
14
15
16
17
18
19
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他