UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C functions, but there are a few unique to the UnderC system which give you runtime access to the compiler. You may evaluate expressions, execute commands, compile code, etc. * Expands the text in expr using the UnderC preprocessor, putting the result into buff. void uc_macro_subst(const char* expr, char* buff, int buffsize) * Executes a UC #-command, like #l or #help. uc_cmd() expects the name of the command, _without_ the hash, e.g. uc_cmd("l fred.cpp") or uc_cmd("help"). void uc_cmd(const char* cmd) * Evaluates any C++ expression or statement will return non-zero if unsuccessful.
標(biāo)簽: implementation Extensions libraries standard
上傳時間: 2013-12-14
上傳用戶:leehom61
與MS-DOS兼容的DOS操作系統(tǒng), FreeDOS like。 aldera OpenDOS Machine Readable Source Kit (M.R.S) 7.01 BUILDING THE MRS KIT The Caldera OpenDOS MRS kit contains the following components: IBMBIO, IBMDOS and COMMAND
標(biāo)簽: MS-DOS DOS 兼容 操作系統(tǒng)
上傳時間: 2015-12-30
上傳用戶:yxgi5
2.0.12 (May 13th, 2004) - Flag driver threads with PF_FREEZE to support software suspend. 2.0.11 (May 7th, 2004) - Avoid split-completion bugs in certain PCI-X chipsets by breaking up large completion entry DMAs on ADB boundaries. 2.0.10 (April 9th, 2004) - Return "command timeout" status instead of "selection timeout status" to the SCSI mid-layer in response to selection timeouts. While the latter may seem more correct, the mid-layer will not offline devices suffering from persistent selection timeouts. This leads to extremely long recovery times for devices that go missing. Returning command timeout status causes the mid-layer to enter recovery and eventually offline persistently missing devices.
標(biāo)簽: PF_FREEZE software support suspend
上傳時間: 2016-01-05
上傳用戶:亞亞娟娟123
用Java語言實(shí)現(xiàn)的各種排序,包括插入排序、冒泡排序、選擇排序、Shell排序、快速排序、歸并排序、堆排序、SortUtil等
上傳時間: 2014-01-11
上傳用戶:qw12
《Linux程序設(shè)計(jì)權(quán)威指南》源代碼,包含: awk copyright curses cvs debug framebuffer gnome gnutools gtk i18n kde manual motif network newt qt regexp rpm shell style svgalib system thread xlib ya
標(biāo)簽: Linux 程序設(shè)計(jì) 源代碼
上傳時間: 2016-01-07
上傳用戶:tyler
個性化的程序離不開個性化的界面設(shè)計(jì),因?yàn)閮?yōu)秀的程序界面是人與計(jì)算機(jī)之間的一座交互橋梁。本書是第一本介紹C++界面程序設(shè)計(jì)領(lǐng)域新技術(shù)的專著。全書共有11章,第1章的內(nèi)容是基于控件的界面編程;第2章介紹了與窗口框架相關(guān)的控件界面程序設(shè)計(jì);第3章是樹形控件和列表控件的界面編程;第4章講述了基于對話框的界面程序設(shè)計(jì);第5章的內(nèi)容是基于窗口的界面程序設(shè)計(jì);第6章是基于圖形的界面程序設(shè)計(jì);第7章是關(guān)于GDI+程序設(shè)計(jì);第8章介紹基于Office自動化的界面程序設(shè)計(jì);第9章的內(nèi)容是Windows Shell程序設(shè)計(jì);第10章介紹了使用CJLibrary控件開發(fā)界面應(yīng)用程序;第11章講述了如何使用CJLibrary工程向?qū)нM(jìn)行界面程序設(shè)計(jì)。著重進(jìn)述了目前在界面程序設(shè)計(jì)領(lǐng)域中的一些新技術(shù),如GDI+程序設(shè)計(jì)、面向Windows XP的Shell程序設(shè)計(jì)、Office XP插件程序設(shè)計(jì)等話題。新技術(shù)的使用是本書的一大特色。本書適合的讀者可以是廣大編程愛好者、C++專業(yè)設(shè)計(jì)人員以及高校相關(guān)專業(yè)師生。
標(biāo)簽: 個性化 程序 界面設(shè)計(jì)
上傳時間: 2014-01-13
上傳用戶:xinyuzhiqiwuwu
This directory contains the Genetic Algorithm Optimization Toolbox for Matlab To use this, if you are local to NCSU and have AFS access to this directory, simply extend the matlab path using the following command. You can also place this command in a file called startup.m. Everytime you start Matlab in the directory containing this file, the path will always be extended.
標(biāo)簽: Optimization Algorithm directory contains
上傳時間: 2014-01-18
上傳用戶:songnanhua
CheckMate is a MATLAB-based tool for modeling, simulating and investigating properties of hybrid dynamic systems. Hybrid systems are modeled using the Simulink graphical user interface (GUI). Parameters and specifications are entered using both the Simulink GUI and user-defined m-files. CheckMate commands are entered in the MATLAB command window.
標(biāo)簽: investigating MATLAB-based simulating properties
上傳時間: 2013-12-13
上傳用戶:源弋弋
在for DOS的C語言中,有一個system()函數(shù),其功能是執(zhí)行命令行程序,在VB中也有shell()函數(shù),在Windows程序設(shè)計(jì)中WinAPI也為我們提供了類似的函數(shù),它們就是WinExec()和ShellExecute(),下面就來討論一下這兩個函數(shù)的用法。
上傳時間: 2016-01-28
上傳用戶:huannan88
Introduction Some times it is required that we build a shared library (DLL) from an m-file. M-files are functions that are written in Matlab editor and can be used from Matlab command prompt. In m-files, we employ Matlab built-in functions or toolbox functions to compute something. In my past articles, I showed you some ways to use Matlab engine (vis. API, C++ class or Matlab engine API) for employing Matlab built-in functions, but what about functions that we develop? How can we use them in VC? Is there any interface? This article shows you an idea to employ your own Matlab functions.
標(biāo)簽: Introduction required M-files library
上傳時間: 2016-01-29
上傳用戶:zhoujunzhen
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1