Description: windows下网络包捕获源代码,可以捕获所有网络数据包,以便分析,谁对本机的攻击.-windows of network packet capture the source code, you can catch all network data packets to the analysis, Who of the plane attacks. Platform: |
Size: 64512 |
Author:tb |
Hits:
Description: 通讯/手机编程
语音压缩
3G开发
android开发
Symbian
Windows Mobile
BREW编程
J2ME
TAPI编程
串口编程
并口编程
USB编程
Modem编程
传真(Fax)编程
GPS编程
手机短信编程
手机彩信(MMS)编程
手机WAP编程
RFID编程
MTK
游戏
外挂编程
射击游戏
模拟服务器
棋牌游戏
游戏引擎
其他智力游戏
其他游戏
多媒体
Audio
midi
mpeg/mp3
IP电话/视频会议
DVD
流媒体/Mpeg4/MP4
视频捕捉/采集
嵌入式/单片机编程-Communications/mobile phone development programming 3G voice compression android development of Symbian Windows Mobile BREW programming J2ME TAPI programming USB serial port programming parallel programming programming programming Modem Fax (Fax) Programming GPS Programming Programming SMS phone color letter (MMS) mobile phone WAP Programming programming programming RFID plug-in programming MTK shooter game servers board games simulation game engine games other games other intellectual Multimedia Audio midi mpeg/mp3 IP phone/video conferencing DVD streaming media/Mpeg4/MP4 Video Capture/Acquisition Embedded/Microcontroller Programmer Platform: |
Size: 126976 |
Author:王龙 |
Hits:
Description: Mobile手机录像,获取源数据是WMV9格式,输出格式为ASF
Requirements:
Visual Studio 2005,
Windows Mobile 5.0 Pocket PC SDK,
ActiveSync 4.0.-Feature Area:
Video capture
Description:
This sample provides the basic video capture functionalities: It captures and encodes video in a WMV file,
and captures and encodes an image in a jpeg file.
Usage:
Build and deploy using Visual Studio 2005.
Relevant APIs/Associated Help Topics:
ICaptureGraphBUilder2
Assumptions:
Your device needs to have a video capture driver installed (the emulator ships with a null capture driver).
The video will be saved to the root of your device to "\video1.asf".
The still picture will be saved to "test.jpg"
If you wish, you can change these hardcoded values in the code for the files to be saved to a different
location.
Requirements:
Visual Studio 2005,
Windows Mobile 5.0 Pocket PC SDK,
ActiveSync 4.0. Platform: |
Size: 13312 |
Author:gzhard |
Hits:
Description: 在智能手机上捕捉GPS信号,不需要ARCGIS开发库支持,采用纯C#编写。开发环境为Microsoft Visual Studio 2005。可在vs.net2008下重编译运行。我的运行环境为windows mobile 6.1和SP2003。可以显示经度,纬度,卫星个数,精确的gps授时。精确至小数点后13位。
界面2是手机自带的gps界面,界面5是本程序的gps界面。纯C#开发的程序是纯绿色的,相对而言,采用ARCGIS开发库开发的同类程序,虽然代码简单,但要安装ARCGIS手机端,不能做成纯绿色的。-Written in pure C#, in smart phones to capture GPS signals. Development environment for Microsoft Visual Studio 2005. Can be re-compiled to run under the vs.net2008. Runtime environment for windows mobile 6.1 or SP2003. Can display the longitude, latitude, satellite number, accurate gps timing. Accurate to 13 decimal. Interface, two built-in gps cell phone interface, the interface 5 is the program gps interface. Platform: |
Size: 161792 |
Author:redvfp |
Hits:
Description: windows mobile下用directshow做一个简单的摄象头预览并抓取BMP图片"的源代码-windows mobile to do next with a simple Camera directshow preview and capture BMP image " of the source code Platform: |
Size: 965632 |
Author:philomely |
Hits:
Description: this program can capture the source from the microphone in window mobile or other windows platform. it use a fundamental wave library in windows such as WaveIn-this program can capture the source from the microphone in window mobile or other windows platform. it use a fundamental wave library in windows such as WaveIn--- Platform: |
Size: 3072 |
Author:whchoi/GodDog |
Hits:
Description: windows mobile 上使用native Camera Capture API 拍照和录像-windows mobile on the use of native Camera Capture API photo and video Platform: |
Size: 13312 |
Author:yu |
Hits:
Description: Windows mobile平台下,利用dshow以及grabber filter实现摄像头预览和采集功能(采集为基带YV12)-capture & preview video from camera under windows mobile Platform: |
Size: 10240 |
Author:Dylan |
Hits:
Description: 对话框是Windows应用程序中最重要的用户界面元素之一,是与用户交互的重要手段,在程 序运行过程中,对话框可用于扑捉用户的输入信息或数据。对话框是一个特殊类型的窗口,任何对窗口进行的操作(如:移动、最大化、最小化等)都可在对话框中 实施,一般来说,在对话框中通过各种控件(如:按钮、编辑框、列表框、组合框等)来和用户进行交互。控件是在系统内部定义的用于和用户交互的基本单元。-Windows Application dialog box is the most important element of the user interface is an important means of interacting with the user, the program is running, the dialog box can be used to capture user input information or data. Dialog box is a special type of window, any window operations (such as: mobile, maximize, minimize, etc.) can be implemented in the dialog box, in general, through a variety of controls in the dialog box (such as: buttons, edit boxes, list boxes, combo boxes, etc.) and user interaction. Internal control is defined in the system used and the basic unit of user interaction. Platform: |
Size: 21504 |
Author:pingzong |
Hits:
Description: 1.TCP流式套接字的编程步骤
在使用之前须链接库函数:工程->设置->Link->输入ws2_32.lib,OK!
服务器端程序:
1、加载套接字库
2、创建套接字(socket)。
3、将套接字绑定到一个本地地址和端口上(bind)。
4、将套接字设为监听模式,准备接收客户请求(listen)。
5、等待客户请求到来;当请求到来后,接受连接请求,返回一个新的对应于此次连接的套接字(accept)。
6、用返回的套接字和客户端进行通信(send/recv)。
7、返回,等待另一客户请求。
8、关闭套接字。
客户端程序:
1、加载套接字库
2、创建套接字(socket)。
3、向服务器发出连接请求(connect)。
4、和服务器端进行通信(send/recv)。
5、关闭套接字。-Windows Application dialog box is the most important element of the user interface is an important means of interacting with the user, the program is running, the dialog box can be used to capture user input information or data. Dialog box is a special type of window, any window operations (such as: mobile, maximize, minimize, etc.) can be implemented in the dialog box, in general, through a variety of controls in the dialog box (such as: buttons, edit boxes, list boxes, combo boxes, etc.) and user interaction. Internal control is defined in the system used and the basic unit of user interaction. Platform: |
Size: 2048 |
Author:pingzong |
Hits:
Description: 在windows的模拟命令行中执行:
Cd d:\soft\tools //进入windows系统某个目录
adb shell //调用安卓的adb接口进入手机系统
su //切换root用户
在手机上按“同意”之后再执行:
Cd /data/local //进入Tcpdump目录
./tcpdump –p –vv –s 0 –w /sdcard/test.pcap //开始抓包命令,test只是抓包后的文件名,可自己更改
在手机上访问需测试的网址,访问之后,用Ctrl+C停止抓包,然后在手机上将USB管理设为读取模式,在手机上将刚才抓到的包拷贝到PC上,用wireshark软件打开该包文件,即可观察其URL情况(Execute on the windows simulation command line:
Cd d:\soft\tools / / Windows system into a directory
ADB shell / / ADB interface to call the entry of Android mobile phone system
Su / root user switch
Press "agree" on mobile phone before executing:
Cd /data/local / / Tcpdump directory entry
./tcpdump - P - VV - S 0 - w /sdcard/test.pcap / / test begin to capture command, just after capture the file name can be changed
Visit the test site, in the mobile phone access, using Ctrl+C to capture, and then in the USB management for mobile phone, read mode, copy to the PC in the mobile phone, just caught the package, using Wireshark software to open the Bao Wenjian, can observe the situation of URL) Platform: |
Size: 8192 |
Author:salen_wu
|
Hits: