搜索结果
找到约 498 项符合
open-dbexpress 的查询结果
其他 学会对文件的记录锁定
学会对文件的记录锁定,及解锁。#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 ...
加密解密 AES for BCB5/6 控件 安装: 1)展开XAES.ZIP 2)启动C++ Builder
AES for BCB5/6 控件
安装:
1)展开XAES.ZIP
2)启动C++ Builder,菜单:
File --> Open Project -->(定位到你展开的目录)--> 根据你的编译器版本,找到Release下对应的XAes_CB5.bpk或者XAes_CB6.bpk,打开!
3)选择Compile,编译完成后点击“Install”,Aes控件将安装到控件板的Netsys页上。 ...
Java书籍 To date tests are still the best solution mankind has found to deliver working software. This book
To date tests are still the best solution mankind has found to deliver working software.
This book is the sum of four years of research and practice in the testing
field. The practice comes from my IT consulting background, first at Octo Technology
and then at Pivolis the research comes from my invo ...
Linux/Unix编程 GIS系统支持库Geospatial Data Abstraction Library代码.GDAL is a translator library for raster geospatial dat
GIS系统支持库Geospatial Data Abstraction Library代码.GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial
人工智能/神经网络 aDABOOST This package contains the following files: learner.jar - is a platform independent java
aDABOOST
This package contains the following files:
learner.jar - is a platform independent java package. In order to run it on windows/linux
open the command prompt/shell and type the command "java -jar learner.jar".
Make sure the java installation path is set in the system enviroment.
learner ...
Java编程 //构造具有指定的标签的菜单 files = new Menu("文件(F)") compile = new Menu("编辑(E)") see = new Menu("查看(V
//构造具有指定的标签的菜单
files = new Menu("文件(F)")
compile = new Menu("编辑(E)")
see = new Menu("查看(V)")
format = new Menu("格式(O)")
font = new Menu("字体和颜色(F)...") //在格式菜单下再添加一个字体及颜色的菜单
help = new Menu("帮助(H)")
//构造具有指定的标签的菜单项
...
文章/文档 一、目的要求 1、用高级语言编写和调试一个简单的文件系统
一、目的要求
1、用高级语言编写和调试一个简单的文件系统,模拟文件管理的工作过程。从而对各种文件操作命令的实质内容和执行过程有比较深入的了解。
2、要求设计一个 n个用户的文件系统,每次用户可保存m个文件,用户在一次运行中只能打开一个文件,对文件必须设置保护措施,且至少有Create、delete、open、close、read ...