搜索结果
找到约 490 项符合
open 的查询结果
按分类筛选
- 全部分类
- 其他 (35)
- Linux/Unix编程 (35)
- 其他书籍 (28)
- Java编程 (26)
- 网络 (18)
- 技术资料 (13)
- 其他嵌入式/单片机内容 (11)
- Java书籍 (11)
- 单片机开发 (11)
- DSP编程 (11)
- 嵌入式/单片机编程 (10)
- 通讯/手机编程 (9)
- VC书籍 (9)
- 书籍 (9)
- 单片机编程 (8)
- 电子书籍 (8)
- Delphi控件源码 (8)
- 微处理器开发 (8)
- 文件格式 (8)
- 人工智能/神经网络 (8)
- 文章/文档 (8)
- 编译器/解释器 (7)
- 操作系统开发 (7)
- 通讯编程文档 (7)
- 软件设计/软件工程 (7)
- 压缩解压 (7)
- Internet/网络编程 (7)
- 数学计算 (6)
- VIP专区 (6)
- 电源技术 (5)
- Symbian (5)
- 加密解密 (5)
- VHDL/FPGA/Verilog (4)
- 其他行业 (4)
- 系统设计方案 (4)
- 驱动编程 (4)
- 软件工程 (4)
- 嵌入式Linux (4)
- 开发工具 (3)
- J2ME (3)
- Applet (3)
- CA认证 (3)
- matlab例程 (3)
- Windows CE (3)
- 书籍源码 (3)
- 编辑器/阅读器 (3)
- 企业管理 (3)
- 源码 (3)
- 软件下载 (2)
- PCB相关 (2)
- 手机短信编程 (2)
- uCOS (2)
- FlashMX/Flex源码 (2)
- 串口编程 (2)
- *行业应用 (2)
- Windows Mobile (2)
- 其他数据库 (2)
- 多国语言处理 (2)
- 中间件编程 (2)
- 行业发展研究 (2)
- 数据结构 (2)
- SQL Server (2)
- 汇编语言 (2)
- BREW编程 (2)
- 数值算法/人工智能 (2)
- 手机WAP编程 (2)
- JavaScript (2)
- 软件测试 (2)
- Linux/uClinux/Unix编程 (2)
- 精品软件 (2)
- 技术书籍 (1)
- 学术论文 (1)
- 多媒体处理 (1)
- 资料/手册 (1)
- 教程资料 (1)
- 通信网络 (1)
- 嵌入式综合 (1)
- C/C++语言编程 (1)
- 可编程逻辑 (1)
- 仿真技术 (1)
- 设计相关 (1)
- GPS编程 (1)
- 教育系统应用 (1)
- 游戏 (1)
- Delphi/CppBuilder (1)
- USB编程 (1)
- SCSI/ASPI (1)
- 金融证券系统 (1)
- 邮电通讯系统 (1)
- TAPI编程 (1)
- 语音压缩 (1)
- Jsp/Servlet (1)
- 磁盘编程 (1)
- 能源行业(电力石油煤炭) (1)
- 系统/网络安全 (1)
- 图形图像 (1)
- 经验分享 (1)
- 软件 (1)
- 其他 (1)
- 论文 (1)
嵌入式Linux 其中sound.c 用于录音和回放。其中特别需要注意的是:1。目前声卡似乎不能打开全双工
其中sound.c 用于录音和回放。其中特别需要注意的是:1。目前声卡似乎不能打开全双工,所以如果fd = open("/dev/dsp", O_RDWR) ,则无法录音和回放。只能分别设置RDONLY和WRONLY。即半双工方式。否则,就是在录音的时候可以听见,但是无法回放。分析下来似乎是IIC总线中只分配了一个通道给声卡,或者是只启用了一个通道,所 ...
加密解密 What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the poss
What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used(In VB - The same technique can be implemented in "c" also.) Program flow Explained * Open the File to be encrypted for Bin ...
Symbian This C/C++ code example demonstrates porting standard C software to the S60 platform. In this exam
This C/C++ code example demonstrates porting standard C software to the S60 platform. In this
example, an open source FTP library (ftplib and qftp) written in C has been ported to Open C. In
addition, a simple UI has been written in Symbian C++ to provide a GUI application.
其他书籍 mmsv1.2 文档
mmsv1.2 文档,可以在open mobile alliance free download
加密解密 MD5加密算法java代码
MD5加密算法java代码,欢迎下载,欢迎open
其他 对于单个控件,COMPONET-->INSTALL COMPONENT..-->PAS或DCU文件-->INSTALL。 2.对于带*.DPK文件的控件包,FILE-->OP
对于单个控件,COMPONET-->INSTALL COMPONENT..-->PAS或DCU文件-->INSTALL。
2.对于带*.DPK文件的控件包,FILE-->OPEN(下拉列表框中选*.DPK)-->INSTALL即可。
3.对于带*.BPL文件的控件包,INSTALL PACKAGES-->ADD-->BPL文件名即可。
4.如果以上INSTALL按钮为失效的话,试试COMPILE按钮。
5.是RUN TIME LIB则在OPTION下的PACKAGE ...
其他 学会对文件的记录锁定
学会对文件的记录锁定,及解锁。#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
int main()
{
int fd
int i
struct {
char name[20]
uint ID
int age
} myrec
fd =open("name", O_RDWR|O_CREAT, 0755)
if (fd == -1) return -1
printf("Input your name:") scanf("%s", myrec.name)
...
嵌入式Linux Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫
Linux 2.4.18 s3c2440 led driver
使用dev-C++撰寫,需要linux 2.4.18 kernel include,編譯完成後產生led module。
insmod main.o //安裝模組
mknod /dev/leds c 221 0
使用方法:
int main(int argc, char *argv[])
{
int testdev
//led test...
testdev = open("/dev/QuickMarkLed",O_RDWR)
ioctl(testdev, 2 ...
压缩解压 The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisi
The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisidec] intended for decoding all current and future Vorbis I compliant streams. The Tremor libvorbisidec library exposes an API intended to be as similar as possible to the familiar vorbisfile library i ...
压缩解压 The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisi
The Tremor Vorbis I stream and file decoder provides an embeddable, integer-only library [libvorbisidec] intended for decoding all current and future Vorbis I compliant streams. The Tremor libvorbisidec library exposes an API intended to be as similar as possible to the familiar vorbisfile library i ...