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

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

public-domain

  • * This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlu

    * This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlus DVB-T. * * DigitalWatch is free software you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation either version 2 of the License, or * (at your option) any later version.

    標簽: DigitalWatch VisionPlu recording watching

    上傳時間: 2014-08-27

    上傳用戶:水口鴻勝電器

  • * This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlu

    * This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlus DVB-T. * * DigitalWatch is free software you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation either version 2 of the License, or * (at your option) any later version.

    標簽: DigitalWatch VisionPlu recording watching

    上傳時間: 2013-12-18

    上傳用戶:dongbaobao

  • java的一個源代碼

    java的一個源代碼,、 public class ThunderBoltAct extends Canvas implements Runnable { private int TIMEOUT = 0 private final static int NUMERIC = 10000 //總分 private final static int INERRGAL = 60 //頻率 private final static int MAXBATTLE = 3 //最大飛機數 private final static int MAXBALLNUM = 30 //最多飛機子彈數 private final static int MAXCOPTERNUM = 16 //最大敵機數 private final static int MAXCOPTERBALLNUM = 16 //最多敵機子彈數 private final static int STEP = 1 private final static int MINCOPTER = 2 //最小敵機數

    標簽: java 源代碼

    上傳時間: 2016-04-26

    上傳用戶:jichenxi0730

  • This package provides a complete http client library. It currently implements most of the relevant p

    This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and cookies. Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).

    標簽: implements currently complete provides

    上傳時間: 2014-01-16

    上傳用戶:siguazgb

  • 非常適合內嵌式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

  • 本程序是用JNI技術實現的讀取硬盤序列號

    本程序是用JNI技術實現的讀取硬盤序列號, 將ChenminDiskIDJoc.jar 加入環境變量 這兩個文件放入window 文件夾 或者JDK的bin文件夾 或者你的應用文件夾 DiskID32.dll DiskID.dll public static String chenmin.io.DiskID.Factory() 返回硬盤廠家 public static String chenmin.io.DiskID.DiskID() 返回硬盤序列號 ChenminDiskIDTest.bat 將啟動直接演示一個讀取硬盤序列號的測試 測試讀取硬盤序列號的源代碼在ChenminDiskIDTest.jar中

    標簽: JNI 程序 技術實現 序列號

    上傳時間: 2013-11-28

    上傳用戶:561596

  • The PXI Hardware Specification is authored and copyrighted by the PXI Systems Alliance. ... This is

    The PXI Hardware Specification is authored and copyrighted by the PXI Systems Alliance. ... This is the first public revision of the PXI specification.

    標簽: Specification copyrighted PXI Hardware

    上傳時間: 2013-12-19

    上傳用戶:cazjing

  • C++名家精華.chm 我們用早期的C++語言編程。工作的第二天中午

    C++名家精華.chm 我們用早期的C++語言編程。工作的第二天中午,厭煩了讀職工手冊,于是我寫了一個工具類,里面包含一個原始指針作為成員變量: #include "xStruct.h" // definition of struct X class xWrapper { X* xItem public: xWrapper() : xItem(new X) { } ~xWrapper() { delete xItem } void dump() { /* dumps xItem to cout */ } } 當然了,使用這個類的程序由于內存問題總是時不時的崩潰,因為我違反三個重要設計原則之一:任何時候,只要你提供了析構函數、拷貝構造函數或賦值運算符中的一個,你通常需要三個都提供。([1]) “所以,”我自言自語道,“我必須自己處理拷貝和賦值問題。簡單地...auto_ptr有拷貝構造函數和賦值運算符,我可以拿過來用一下。”(你知道早期C++程序庫中的auto_ptr,是嗎?)

    標簽: chm 語言編程

    上傳時間: 2013-12-28

    上傳用戶:Amygdala

  • 本程序執行后

    本程序執行后,創建一個能夠加載文字的面板,文字的內容是本地主機的IP地址的動態顯示。跑馬燈文字的大小和跑馬燈文字顯示的速度都可以在GatutTextCrawler.html文件里通過參數進行設置。 編程思路:首先,本練習因為要制作偵測IP的跑馬燈的實例,所以首先要生成程序界面:在函數public void init()中,首先通過語句s = getParameter("fontSize")和fontSize = s != null ? Integer.valueOf(s).intValue() : 12設置文字字體大小,然后進行字體設置和顯示速度設置,最后通過語句msgText = getParameter("preText")得到GatutTextCrawler.html文件中的字符串值。然后,得到主機IP地址,首先通過函數adds = InetAddress.getLocalHost().toString()得到主機的IP地址,最后在更新屏幕函數public void update(Graphics g)中通過實現跑馬燈效果。

    標簽: 程序

    上傳時間: 2016-06-06

    上傳用戶:miaochun888

  • This program is free software you can redistribute it and/or modify it under the terms of the GNU Ge

    This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your option) any later version.

    標簽: redistribute the software program

    上傳時間: 2016-06-09

    上傳用戶:sssl

主站蜘蛛池模板: 河池市| 正镶白旗| 香格里拉县| 鹤山市| 岳阳市| 北京市| 红桥区| 青海省| 永定县| 壶关县| 伊金霍洛旗| 上高县| 长葛市| 江永县| 革吉县| 晋中市| 昌吉市| 松原市| 天柱县| 阿合奇县| 北安市| 贵港市| 洛扎县| 阿克| 二连浩特市| 临清市| 泰和县| 蕉岭县| 玉环县| 松原市| 从化市| 临高县| 汾西县| 赞皇县| 从化市| 永寿县| 达孜县| 白沙| 榆社县| 白山市| 衢州市|