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
_WINDLL
python监控客户端进程与键盘记录并上传至服务器
importpythoncomimportpyHookimportwin32clipboardfromincimportMyFtpfromincimportScreenShotimporttimeimportosuser32=
windll
.user32kernel32
septwolves2015
·
2016-11-01 14:58
python
python ctypes
windowsAPIfromctypesimportwindllkernel32=
windll
.kernel32https://docs.python.org/2/library/ctypes.htmlhttp
叶常落
·
2016-08-31 21:56
ctypes
python
python
ICMP协议Ping方法的Python实现解析
流程选择目标网址解析对方ip地址构造数据报,添加校验和,发送并记录发送时间循环监听,直到接收到数据报,提取对方发送时间,获得数据报传输时间;若超时则返回None细节解析检查管理员权限ifctypes.
windll
.s
csdn_moming
·
2016-04-20 17:44
python
windows
icmp
ping
校验和
Python
python调用windows api
importctypes #方式一 ctypes.
windll
.user32.MessageBoxA(None,'message','title',0) #方式二 ctypes.
WinDLL
罗兵
·
2016-03-05 13:00
Python实现修改Windows CMD命令行输出颜色(实例解析)
1、程序运行结果展示2、核心代码介绍# get handle std_out_handle = ctypes.
windll
.kernel32.GetStdHandle(STD_OUTPUT_HANDLE
sosly
·
2016-03-03 16:00
windows
python
CMD彩色
命令行彩色输出
fatal error C1083: 无法打开源文件
ZXCVB/ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _WINDOWS /D _USRDLL /D CALENDAR_UI_EXPORTS /D _
WINDLL
纳凉亭子
·
2016-02-03 14:00
fatal error C1083: 无法打开源文件
ZXCVB/ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _WINDOWS /D _USRDLL /D CALENDAR_UI_EXPORTS /D _
WINDLL
纳凉亭子
·
2016-02-03 14:00
Pywin32-notepad
windows模拟鼠标及键盘动作PyWin32DocumentationSetForegroundWindow的正确用法WinAPI:FindWindow、FindWindowEx-查找窗口通过ctypes的
windll
4930ead3225c
·
2015-11-14 17:54
使用python的内置ctypes模块与c、c++写的dll进行交互
另外加载stdcall的dll的方式是
WinDLL
("dllpath") sum=dll.Add(1, 102) 若参数为指针 p=1
·
2015-11-13 16:23
python
ctypes常用dll
ctypes import * libc = cdll.msvcrt print(libc.printf) print(libc.time(None)) print(libc.sin(2))
windll
·
2015-11-13 06:12
type
python调用dll
调用CALLBACK标记的dll方法要用dll = ctypes.
windll
.LoadLibrary( 'test.dll' ) 没有CALLBACK的方法用
·
2015-11-13 04:08
python
_USRDLL _AFXDLL _
WINDLL
三种dll编译宏的具体含义
Debug版定义"_DEBUG",Release版定义"NDEBUG" 与MFC DLL有关的编译常数包括: _
WINDLL
表示要做一个用到MFC的DLL
·
2015-11-11 09:13
dll
wxdebug.cpp(11) : warning C4603: “_
WINDLL
”: 未定义宏或在预编译头使用后定义发生改变
解决方法 属性=》配置属性=》预编译头=》不使用预编译头 如果预编译头文件被正确使用时,它确实大大提高我们编程的效率(你工作中,有多少时间是在等编译完成?很多吧,这个时候一般都很无聊,无奈,浪费时间)。但是他太容易用错了. 下面是几种常见的错误用法. 1) 在预编译头文件里include自己的头文件(当然, 如果你的头文件不经常变化, 也可以) 原因:自己的头文件一般会经常
·
2015-11-11 02:29
xdebug
简单的 MessageBox
1. ctypes import ctypes ctypes.
windll
.user32.MessageBoxW(0, u'内容', u'标题',0) 通过 ctypes 直接调用 Windows
·
2015-11-09 13:13
message
ctypes 调用 dll
加载 Windows API 和 C 运行库 先看例子 from ctypes import * u32 =
windll
.LoadLibrary('user32.dll') #加载user32.dll
·
2015-11-08 11:31
type
python 使用dll
有三种导入dll的方式: cdll(): dll函数以c方式导出
windll
(): dll 函数以标准方式导出 oledll(): com 方式导出 如:
·
2015-11-07 13:54
python
功能名称
windll
.user32是实现了载入动态连接库user32.dll,而
windll
.user32.MessageBoxW是实现了从动态连接库user32.dll获取到函数MessageBoxW的地址。
·
2015-10-31 10:02
IDA学习笔记
标题:IDA学习笔记作者:kagula日期:2015-06-09环境:IDA6.6、VS2013Update4阅读前提:熟悉计算机指令介绍 通过分析自己用VS2013写的
WinDLL
来学习IDA反汇编工具的使用
lee353086
·
2015-06-09 10:00
python引用DLL文件的方法
extern"C"{int__stdcalltest(void*p,intlen){returnlen;}}在python中我们可以用以下两种方式载入1.importctypesdll=ctypes.
windll
.Loa
像风一样的自由
·
2015-05-11 15:12
【转】python引用DLL文件
" { int__stdcalltest(void*p,intlen) { returnlen; } }在python中我们可以用以下两种方式载入1. importctypes dll=ctypes.
windll
.LoadLibrary
xxjbs001
·
2015-04-06 21:00
c
linux
python
dll
python基于windows平台锁定键盘输入的方法
该代码可阻断windows平台下的鼠标键盘输入,如下所示:#coding:UTF-8importtimefromctypesimport*user32=
windll
.LoadLibrary('user32
刘洋
·
2015-03-05 15:04
info_zip
windll
.txt 的翻译
自己用的,有人用的着也是好事一件: There are now several entry points to the dll.There is a single "unzipping" entry point of:int WINAPI Wiz_SingleEntryUnzip(int ifnc, char **ifnv, int xfnc, char **xfnv,
顾起威
·
2014-12-01 20:00
windows
null
Integer
文档
dll
wildcard
Python实现修改Windows CMD命令行输出颜色(完全解析)
1、程序运行结果展示2、核心代码介绍# get handle std_out_handle = ctypes.
windll
.kernel32.GetStdHandle(STD_OUTPUT_HANDLE
sosly
·
2014-09-06 13:00
windows
python
CMD彩色
命令行彩色输出
_USRDLL _AFXDLL _
WINDLL
三种dll编译宏的具体含义
Debug版定义"_DEBUG",Release版定义"NDEBUG"与MFCDLL有关的编译常数包括:_
WINDLL
表示要做一个用到MFC的DLL_USRDLL表示做一个用户DLL(相对MFC扩展DLL
chenlycly
·
2014-07-31 14:00
python进程提权与检测进程调用所有模块
主要用了:ctypes.
windll
.kernel32.CreateToolhelp32Snapshotctypes.
windll
.kernel32.Process32Firstctypes.
windll
.kernel32
bl4ckcat
·
2014-07-21 12:48
编程
python 调用dll
_stdcall test( void* p, int len){ return len;}}在python中我们可以用以下两种方式载入1.import ctypesdll = ctypes.
windll
.LoadLibrary
qq61394323
·
2014-07-11 12:00
python彩色输出
/usr/bin/envpython #encoding:utf-8 fromctypesimport* if__name__=="__main__":
windll
.Ker
xiangliangyu2008
·
2014-05-22 09:00
python
python调用dll方法
extern"C"{int__stdcalltest(void*p,intlen){ returnlen;}}在python中我们可以用以下两种方式载入1.importctypesdll=ctypes.
windll
.LoadLibrary
·
2014-04-15 19:00
python
Python打印彩色命令行
/usr/bin/envpython #encoding:utf-8fromctypesimport*if__name__=="__main__":
windll
.Ker
spider1983
·
2014-03-14 09:51
python
颜色
Python打印彩色命令行
/usr/bin/envpython #encoding:utf-8fromctypesimport*if__name__=="__main__":
windll
.Ker
spider1983
·
2014-03-14 09:51
python
颜色
python
python color相关
/usr/bin/envpython #encoding:utf-8 fromctypesimport* if__name__=="__main__":
windll
.Ker
独钓渔
·
2014-01-09 09:00
编译包含RTreeIntersects的libspatialite库文件
由于项目需要包含RTreeIntersects的函数,而Gaia官网只提供不含RTreeIntersects的各平台库文件,只好自己编译一个包含RTreeIntersects的
Windll
文件。
liminled
·
2013-11-13 15:00
sqlite3
Python调用DLL或SO
他么分别是,cdll(),
windll
()和oledll()。
会Java的蝈蝈
·
2013-06-03 22:00
python
dll
so
nafxcw.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already defined in解决办法
Category:Preprocessor Preprocessordefinitions: WIN32,NDEBUG,_WINDOWS,_MBCS,_USRDLL,MSGBOX_EXPORTS,_
WINDLL
thdxs
·
2013-03-14 15:00
python 输出颜色与样式
http://fayaa.com/code/view/35/full/ def print_nt(foreground, newline, *kw): from ctypes import
windll
jebai0521
·
2012-06-21 07:00
python
利用python管理windows进程
(os.getcwd())[-1]#WIN关闭一个进程importctypesdefkill(pid): """killfunctionforWin32""" kernel32=ctypes.
windll
.kernel32
Puluto
·
2012-06-19 11:00
python 判断用户是否空闲(暂离时间)
questions/1083178/wxpython-trapping-mouse-keyboard-events-without-window-focusfromctypesimportStructure,
windll
xugangjava
·
2012-05-10 13:00
c
python
import
structure
简单分析Python ctypes模块的
WinDLL
源码(我爱Python,吼吼~)
又是一个寂寞的周末啊同学们,这几天天气变冷自己却没有赖床,好吧,表扬一次^^扯点八卦,今天是pycon2011在上海那边开了,我早上和刚才看了网上的直播,做的很不错,形式很像irongeek.com的视频,我觉得这块在国内还是有一点点商业前景的,哈.听了网易林伟和豆瓣洪强宁的演讲,开拓了点视野,豆瓣基本主要都是用python做,网易说一些服务端也是用python写,结合c去做,但是python的代
GaA_Ra
·
2011-12-03 17:06
各种基础
python
import
dll
library
class
api
【转】python引用DLL文件
" { int__stdcalltest(void*p,intlen) { returnlen; } }在python中我们可以用以下两种方式载入1. importctypes dll=ctypes.
windll
.LoadLibrary
five3
·
2011-12-01 11:00
c
linux
python
dll
python调用dll
的方法也不同,主要有两种调用规则,即cdecl和stdcal,还有其他的一些调用约定,关于他们的不同,可以查阅其他资料先说stdcal的调用方法:方法一:import ctypesdll = ctypes.
windll
.LoadLibrary
xiesiyuana
·
2011-09-08 20:00
python
String
buffer
dll
Path
import
python调用dll
的方法也不同,主要有两种调用规则,即cdecl和stdcal,还有其他的一些调用约定,关于他们的不同,可以查阅其他资料先说stdcal的调用方法:方法一:import ctypesdll = ctypes.
windll
.LoadLibrary
xie376450483
·
2011-09-08 20:00
python
String
buffer
dll
Path
import
python调用dll方法
_stdcall test( void* p, int len){ return len;}}在python中我们可以用以下两种方式载入1.import ctypesdll = ctypes.
windll
.LoadLib
andoring
·
2011-04-24 21:00
linux
python
dll
Python - windows - 隐藏Console窗口
liuyuan_jq2011-04-19 转载自:http://blog.csdn.net/kingofice/archive/2009/08/20/4462536.aspx importctypeswhnd=ctypes.
windll
.kernel32
liuyuan_jq
·
2011-04-19 14:00
ctypes 载入 dll 产生的 WindowsError: [Error 126] 错误原因
如果访问不到就会报以下错误: >>>importctypes>>>dll=ctypes.
WinDLL
(r'c:/test/test.dll') Traceback(mostrecentcalllast)
kowity
·
2011-01-10 22:00
python
File
Module
dll
Path
import
_USRDLL _AFXDLL _
WINDLL
三种dll编译宏的具体含义
Debug版定义"_DEBUG",Release版定义"NDEBUG"与MFCDLL有关的编译常数包括:_
WINDLL
表示要做一个用到MFC的DLL_USRDLL表示做一个用户DLL(相对MFC扩展DLL
honker110
·
2011-01-06 17:00
dll
mfc
扩展
compiler
extension
compilation
python是个什么东西---python---py2exe打包后屏蔽控制台
time import ctypes if __name__ == "__main__": whnd = ctypes.
windll
.kerne
metallica_1860
·
2010-07-19 15:00
windows
python
OS
Excel
wxPython
C/C++编译链接错误解决方法 汇总
errorLNK2005:_DllMain@12alreadydefined"A:,你只需要在工程设置里面,把WIN32,NDEBUG,_WINDOWS,_MBCS,_USRDLL,MSGBOX_EXPORTS,_
WINDLL
wutong_login
·
2010-04-29 07:00
windows
dll
pywin32编程实例
这里面技巧太多, 1.使用win32的dll必须使用
windll
.LoadLibrary 2.获得一个字符串的值c_char_p(addr).value 3.wap拨号 4.使用win32ras
yuhai.china
·
2009-07-02 16:00
编程
C++
c
socket
WAP
pywin32编程实例
这里面技巧太多, 1.使用win32的dll必须使用
windll
.LoadLibrary 2.获得一个字符串的值c_char_p(addr).value 3.wap拨号 4.使用win32ras
yuhai.china
·
2009-07-02 16:00
编程
C++
c
socket
WAP
在python中控制鼠标
一.在获得焦点的窗口中移动鼠标#coding=gbkfromctypesimport*importtimeuser32=
windll
.user32kernel32=
windll
.kernel32classRECT
rangq1
·
2009-06-01 11:00
python
struct
Class
import
hook
structure
上一页
1
2
3
4
下一页
按字母分类:
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
其他