CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - mapping

搜索资源列表

  1. 内存映射文件

    0下载:
  2. 内存映射文件例子-memory mapping file examples
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:7.35kb
    • 提供者:none
  1. 映射网络驱动器

    0下载:
  2. 映射网络驱动器,简单的说就是将其它计算机的共享文件作为本地的一个驱动器.windows提供了一系列的网络函数帮助我们实现各种复杂的网络功能.我们只是使用到其中两个函数,WNetAddConnection2和WNetCancelConnection.-mapping network drives, simply means that the other computers to share files as a local drive. Windows provides a wide range
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:81.36kb
    • 提供者:wangzidane
  1. 进程线程间共享数据的DLL

    0下载:
  2. 应用内存映射文件方式,实现了在应用程序的进程之间进行共享数据-application memory mapping document, achieved in the application process for sharing data between
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:16.75kb
    • 提供者:叶子
  1. PhysMemSource

    0下载:
  2. Windows NT有映射物理内存到一个Device,这个源码告诉你怎么去访问物理内存。-Windows NT are mapping physical memory to a Device, the source tell you how to access physical memory.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:28.8kb
    • 提供者:李中国
  1. LZWarithmetic

    0下载:
  2. LZW算法基于转换串表(字典)T,将输入字符串映射成定长(通常为12位)的码字-LZW algorithm is based on converting Series (dictionary) T, the input string mapping into fixed-length (usually 12) the code word
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:4.71kb
    • 提供者:傻傻
  1. spice3f5.tar

    0下载:
  2. linux平台下类似著名的电路板作图软件 Spice的源代码,对于设计电子作图类的 有很高的参考价值 -linux platform similar to the famous circuit board Spice mapping software's source code for electronic graphic design category of high reference value
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1.17mb
    • 提供者:yyf
  1. VC++6.0 内存管理编程技巧

    0下载:
  2. VC++6.0 内存管理编程技巧 包括: 1、共享内存页; 2、内存映射文件; 3、虚拟内存。-VC 6.0 memory management programming skills include : 1. Shared memory pages; 2, the memory mapping file; 3, virtual memory.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2.44mb
    • 提供者:张建
  1. 网络拓扑测绘工具分析和防测绘方法研究

    0下载:
  2. 网络拓补测绘的典型代码,可以了解如何在局域网中发现拓补-network topology mapping of the typical code, can understand how the LAN topology discovery
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2.47kb
    • 提供者:李鸿中
  1. NetSuper

    0下载:
  2. 软件功能介绍: (1)搜索局域网内的所有活动的计算机,并将 显示这些计算机的IP地址,所属的域或者工作组. (2)搜索指定的某个计算机的共享资源. (3)搜索所有计算机的所有共享资源. (4)打开某个指定的计算机. (5)打开某个指定的共享目录. (6)将某个指定的共享目录映射到本地磁盘(映射网络驱动器). (7)将搜索到的计算机列表导出到文本文件,一目了然. (8)将搜索到的共享资源列表导出到文本文件. (9)搜索SQL Server服务器,将局域网中
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:251.08kb
    • 提供者:xiao
  1. windowsbios

    0下载:
  2. 大家都知道,windows接管了对物理内存的直接存取,而bios信息存在物理内存 的f000:0000处,关键就是如何读取物理内存。 函数说明 第一个函数ZwOpenSection用来打开section,第一个参数是指向HANDLE变量的指针,第二个是访问参数,第三个是指向OBJECT_ATTRIBUTES的指针 第二个函数ZwMapViewOfSection用来建立物理内存和当前进程的一段物理内存的联系,参数很多,一会在例程里再详细解释 第三个函数ZwUnmapV
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:66.1kb
    • 提供者:王涛
  1. 1.16

    0下载:
  2. 用VC绘制的动画图标的例子,就是动画托盘图表!-VC mapping the animation icon example is the animation tray tables!
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:15.41kb
    • 提供者:天鹏
  1. pe_decoder

    1下载:
  2. 在《软件加密技术》这本书里看过PE文件各部分的详细解释之后,我也有了一个自己写PE文件分析器的的想法。虽然好的分析器不在少数,但对于一堆十六进制数,有些朋友可能不明白它代表什么意思。如果在程序里就可以将这些01序列转换成可以直接看懂得信息,那至少用户可以省去以后去查表的麻烦。怀着这样的想法,我仔细的研究了书中分析器PEInfo的源代码,我发现它没有提供信息转换的功能。 通过研究发现,PEInfo是通过PE文件在内存中的映象来获取文件信息的,我在想是否还有别的方法可以绕过将文件映象到内
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:108.43kb
    • 提供者:heroin
  1. tcpmap.c

    0下载:
  2. UNIX/LINUX TCP桥(或TCP端口映射器)-UNIX / Linux TCP Bridge (or TCP port mapping)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:3.24kb
    • 提供者:black bear
  1. gpio1

    0下载:
  2. 利用开发板上的/dev/mem设备,进行内存映射,驱动cpu的GPIO口,点亮和熄灭led灯.附makefile文件-use development board / dev / mem equipment, memory mapping, Drivers cpu GPIO the mouth, and the lights extinguished led lights. makefile attached document
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:18.2kb
    • 提供者:luchong2000
  1. led-driver

    0下载:
  2. LINUX下控制LED屏的驱动程序,可以实现内存映射功能-LINUX LED screen under the control of the driver, can be achieved memory mapping function
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:40.63kb
    • 提供者:deeply2000
  1. ZMemoryFile

    1下载:
  2. 内存映射文件的使用封装类 把文件映射到内存,象使用内存那样访问文件-memory mapping Packaging, the use of paper documents mapping category of memory, such as memory access files
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1.68kb
    • 提供者:张三
  1. dma-mapping------------------------------

    0下载:
  2. drivers/base/dma-mapping.c - arch-independent dma-mapping routines.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-07
    • 文件大小:1.28kb
    • 提供者:nangong7
  1. io-mapping

    0下载:
  2. For small address space machines, mapping large objects into the kernel virtual space isn t practical. Where available, use fixmap support to dynamically map pages of the object at run time.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:1.42kb
    • 提供者:zeiyiewei
  1. dma-mapping-common

    0下载:
  2. Map a coherent DMA buffer previously allocated by dma_alloc_attrs into user space. The coherent DMA buffer must not be freed by the driver until the user space mapping has been released.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:1.54kb
    • 提供者:ruhndan
  1. dma-mapping

    0下载:
  2. DMA Mapping glue for ARC.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5.05kb
    • 提供者:pengcoweng
« 12 3 4 5 6 7 8 9 10 ... 24 »
搜珍网 www.dssz.com