亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

tp-link

tp-link是普聯技術有限公司旗下的品牌,成立于1996年,是專門從事網絡與通信終端設備研發、制造和行銷的業內主流廠商,也是國內少數幾家擁有完全獨立自主研發和制造能力的公司之一,創建了享譽全國的知名網絡與通信品牌:tp-link。是一家正處于高速發展和國際化進程中的國家級高新技術企業,公司總部坐落于深圳市高新技術產業園區內[1]。
  • Introduction A shared library is a collection of functions that are available for use by one or mor

    Introduction A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to all applications.

    標簽: Introduction collection available functions

    上傳時間: 2014-01-26

    上傳用戶:2467478207

  • This Microsoft(R) Macro Assembler Reference lists all MASM instructions, directives, statements, and

    This Microsoft(R) Macro Assembler Reference lists all MASM instructions, directives, statements, and operators. It also serves as a quick reference to the Programmer’s WorkBench commands, and the commands for Microsoft utilities such as LINK and LIB. This book documents features of MASM version 6.1, and is part of a complete MASM documentation set.

    標簽: instructions directives statements Microsoft

    上傳時間: 2016-01-31

    上傳用戶:asddsd

  • 本書完整而詳細地介紹了TCP/IP協議是如何實現的。書中給出了約500個圖例

    本書完整而詳細地介紹了TCP/IP協議是如何實現的。書中給出了約500個圖例,15 000行實際操作的C代碼,采用舉例教學的方法幫助你掌握TCP/IP實現。本書不僅說明了插口API和協議族的關系以及主機實現與路由器實現的差別。還介紹了4.4BSD-Lite版的新的特點,如多播、長肥管道支持、窗口縮放、時間戳選項以及其他主題等等。讀者閱讀本書時,應當具備卷1中闡述的關于TCP/IP的基本知識。本書適用于希望理解TCP/TP協議如何實現的人,包括編寫網絡應用程序的程序員以及利用TCP/IP維護計算機網絡的系統管理員。

    標簽: TCP 500 IP 協議

    上傳時間: 2013-12-19

    上傳用戶:wangzhen1990

  • 非常適合內嵌式mp3播放,例如控制臺!注意看壓縮包里readme.doc 詳細過程,在ARM及MIPS下通過 新建一個 wce application,選擇 a simple windows ce

    非常適合內嵌式mp3播放,例如控制臺!注意看壓縮包里readme.doc 詳細過程,在ARM及MIPS下通過 新建一個 wce application,選擇 a simple windows ce application 在 1.tool->options->directories>include files里包含必要的頭文件 D:\WINCE500\pubilc\directx\SDK\INC D:\WINCE500\pubilc\common\SDK\INC D:\WINCE500\pubilc\common\OAK\INC D:\WINCE500\pubilc\common\DDK\INC 2. >Library files D:\WINCE500\PUBLIC\DIRECTX\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\OAK\LIB\MIPSII\RETAIL 3.可能要在Project->Settings->link的object/library modules 加入 commctrl.lib coredll.lib ole32.lib oleaut32.lib uuid.lib strmiids.lib newres.h play.cpp play.vcw resource.h StdAfx.cpp StdAfx.h 下面為播放源碼 #include "stdafx.h" #include<dshow.h> #include<streams.h> .......其實編譯時的 object/library modules 只要看 sourse 文件包含哪個dll,或lib 就行

    標簽: application windows readme simple

    上傳時間: 2016-05-05

    上傳用戶:ynsnjs

  • This code is described in "Computational Geometry in C" (Second Edition), Chapter 8. It is not writ

    This code is described in "Computational Geometry in C" (Second Edition), Chapter 8. It is not written to be comprehensible without the explanation in that book. Prints out one arm configuration to reach given target. Assumes number of links >= 3. Input: nlinks Number of links L1 L2 ... Ln Link lengths x0 y0 target0 x1 x2 target1

    標簽: Computational described Geometry Chapter

    上傳時間: 2014-01-25

    上傳用戶:yan2267246

  • 看n2實例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows

    看n2實例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms

    標簽: simulator Simulator different Create

    上傳時間: 2016-07-02

    上傳用戶:wfl_yy

  • package query public class LinkQuery { private Node front private Node vear public Link

    package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("隊是空的,無法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }

    標簽: private public Node LinkQuery

    上傳時間: 2016-07-08

    上傳用戶:天誠24

  • 大一時學c語言時做的一個基于turbo-c圖形庫的學生管理系統(非文本圖形方式)

    大一時學c語言時做的一個基于turbo-c圖形庫的學生管理系統(非文本圖形方式),應該說當時花了不少心血。功能方面實現:調色(對8個默認的調色板的值進行更改),換膚(改界面顏色),時間,文件加密(用了類似轉子加密的方法),快捷鍵,錯誤提示,分頁等,注釋比較詳細,供初學c語言的人參考。需要將egavga.obj文件link起來才能脫離turbo-c環境執行,網上能找到相關教程。

    標簽: turbo-c c語言 圖形庫 圖形

    上傳時間: 2014-01-02

    上傳用戶:330402686

  • 8b10b編解碼器

    8b10b編解碼器,常用于camera link,1394等高速信號傳輸

    標簽: 8b10b 編解碼器

    上傳時間: 2013-12-29

    上傳用戶:edisonfather

  • proface的觸摸屏和艾默生的變頻器通過此程序可相互通信

    proface的觸摸屏和艾默生的變頻器通過此程序可相互通信,在屏上直接控制變頻器的起停,調變頻的其它參數,支持MEMORY-LINK,和艾默生的變頻器的協議

    標簽: proface 觸摸屏 變頻器 互通

    上傳時間: 2014-08-23

    上傳用戶:cursor

主站蜘蛛池模板: 纳雍县| 卓尼县| 邵阳县| 新竹县| 铜山县| 德江县| 银川市| 雷波县| 太仆寺旗| 岢岚县| 璧山县| 武宣县| 洛隆县| 南靖县| 高安市| 韶山市| 胶州市| 郸城县| 十堰市| 颍上县| 松江区| 宁夏| 邮箱| 冷水江市| 威海市| 黄大仙区| 华容县| 海兴县| 许昌县| 普兰店市| 专栏| 德清县| 杂多县| 南宫市| 安徽省| 都安| 崇信县| 昭平县| 苍山县| 明水县| 五原县|