Welcome![Sign In][Sign Up]
Location:
Search - include.h

Search list

[OpenGL programview3ds

Description: 源码3d格式转化软件view3ds下载 1,用VIEW3DS打开*.3ds文件; 2,左键点击打开的VIEW3DS显示区上任意一点将会弹出选择菜单; 3,按下E键选择:Export OpenGL C Code,将会自动生成两个文件*.h和   *.gl; 4,将两个文件拷到你的工程(为OpenGL环境)目录下; 5,在你的工程中加入#include\"*.h\"; 6,给*.h文件中生成的显示列表赋id,Model = GL3DS_initialize_--()   "--"代表3ds文件的名称; 7,调用显示列表:glCallList(Model) 。   ok!-source 3d format conversion software download a view3ds with VIEW3DS open *. 3ds documents; 2, Click on the button to open the display area VIEW3DS arbitrary point on the menu will pop up; 3, press the button to select E : Export OpenGL C Code will automatically generate two documents *. H *. Gl; 4, the two documents will peruse your project (for OpenGL Environment) directory; 5. your works include # include "*. h"; 6 to *. H documents generated by the display lists given id, Model = GL3DS_initialize_ -- () "--" document on behalf of 3ds the name; 7, calling the display lists : glCallList (Model). Ok!
Platform: | Size: 45463 | Author: 沈淳 | Hits:

[Other resourcematrixforpowersystem

Description: 电力系统稀疏矩阵计算类,用法范例代码,包括三个目录,MALIB(类),MATEST(使用范例),INCLUDE(*.H),是我编写的电力系统能量管理系统基础类之一.-power system sparse matrix computation, the use of code examples, including the three catalogs, MALIB (type), MATEST (using the example), INCLUDE (*. H), I was prepared by the power system energy management system based on one category.
Platform: | Size: 47718 | Author: 奇闻 | Hits:

[Other resourceinclude.h

Description: 用于61单片机,内含大量的头文件,使用起来很方便-for 61 microcontroller, the first containing a large number of documents, was easy to use
Platform: | Size: 53204 | Author: 田天 | Hits:

[Develop ToolsT-REC-H[1].245-200605-I!!PDF-C

Description: 本建议书不仅说明了终端信息消息的句法和语义,而且说明了在通信起始或通信期间使用它们作为带 内协商的规程。消息不仅包括接收和传输能力,而且也包括来自接收端的通信方式优先级、逻辑信道信 令、控制与指示。为确保可靠的视听与数据通信,还详细说明了被普遍认可的信令规程。-the proposals not only explains the terminal information and news of the syntax and semantics, described the initial communication or in the use of communication with them as consultations within the order. Sources include not only the reception and transmission capability, but also from receiving end of the means of communication priority, Luojishendao signaling, Control and instructions. To ensure reliable audio-visual and data communications, but also a detailed description of the universally recognized Signaling a point of order.
Platform: | Size: 4595971 | Author: ma | Hits:

[OS programFX2.H

Description: FX2.H和FX2REGS.H,cy7c68013芯片的固件程序需要include这两个头文件,应该对usb开发的有些用
Platform: | Size: 9737 | Author: yanping | Hits:

[Othercanf18xx8.h

Description: 、 先在microchip网站上找到00738.zip,这个包中有 can18xx8.h,can18xx8.c,将其复制到一个你要编写程度的子目录中,例如C:\testcan下,这个时候这个东东是不能直接用的。 2、 下载一个MPLAB 7.10,直接安装(要求直接下载) 3、 再下载一个PICC18 (HI-TECH的),要正版哦(支持正版,买不起的想其它办法吧) 4、在你的头文件上写上如下的样式: #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h"//可能是“pic.h”不太好包含,因此常会报错,直接包含克服之 5、然后设置好PICC和MPLAB,如果MPLAB上没有PICC18,则到PICC的网上下一个安装软件,可以直接运行安装就有了。 6、按照工程的基本要求把你的源代码、添加上两个库(不加也可以) 然后就可以写如下代码了:下面是一个完整版,可以直接使用microchip的库函数,本程序只是仿真调试过,未在多个芯片通信过,仍在制作中。 #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h" unsigned long NewMessage; BYTE NewMessageData[8]; BYTE MessageData[8]; BYTE NewMessageLen; enum CAN_RX_MSG_FLAGS NewMessageFlags=1; BYTE RxFilterMatch; void main() { //int a; //int b; CANInitialize(1, 5, 7, 6, 2, CAN_CONFIG_VALID_XTD_MSG); while(1) { // Application specific logic here // Check for CAN message if ( CANIsRxReady() ) { CANReceiveMessage(&NewMessage,NewMessageData,&NewMessageLen,&NewMessageFlags); if ( NewMessageFlags & CAN_RX_OVERFLOW ) { // Rx overflow occurred; handle it } if ( NewMessageFlags & CAN_RX_INVALID_MSG ) { // Invalid message received; handle it } if ( NewMessageFlags & CAN_RX_XTD_FRAME ) { // Extended Identifier received; handle it } else { // Standard Identifier received. } if ( NewMessageFlags & CAN_RX_RTR_FRAME ) { // RTR frame received } else { // Regular frame received. } // Extract receiver filter match, if it is to be used RxFilterMatch = NewMessageFlags & CAN_RX_FILTER_BITS; } // Process received message // Transmit a message due to previously received message or // due to application logic itself. if ( CANIsTxReady() ) { MessageData[0] = 0x01; CANSendMessage( 0x02,MessageData,1,CAN_TX_PRIORITY_0 &CAN_TX_STD_FRAME & CAN_TX_NO_RTR_FRAME); } // Other application specific logic } // Do this forever // End of program } 以上均是参考文档并进行了修正,由于中间总是报错,为了大家让CAN更容易,谢谢大家!
Platform: | Size: 10682 | Author: lovelzs2008@126.com | Hits:

[GUI DevelopSkin++-Bcg64-Source

Description: 在(VC7)"项目->属性->链接器->输入->附加依赖项"中加入SkinPlusPlusDLL.lib 或 在(VC6)"Project->Settings->Link->Object/library"中加入SkinPlusPlusDLL.lib 2.在你的程序中包含头文件 #inlcude "SkinPlusPlus.h" 3.在程序中加入初始化语句InitInstance() InitializeSkin(_T("XPCorona.ssk")) 注:以上假定SkinPlusPlusDLL.lib,SkinPlusPlus.h,XPCorona.ssk都在当前目录,如果不是请更改路径设置。 二.卸载Skin++ 在程序的卸载函数中加入ExitInstance() ExitSkin() 三.更换皮肤 执行函数LoadSkin即可以实现动态换肤 LoadSkin(_T("XPCorona.ssk")) 四.函数说明 InitializeSkin是SKin++的初始化函数,您可以采用如下参数加载Skin++ InitializeSkin(皮肤文件名) 注:如果皮肤文件名中没有路径则采用当前目录。 LoadSkin(皮肤文件名) 注:如果皮肤文件名中没有路径则采用当前目录。 五.使用分隔条窗体的应注意的问题 您必须SKINPLUSPLUS_SPLITTER()和SKINPLUSPLUS_INIT_SPLITTER(m_wndSplitter)宏 注:SKINPLUSPLUS_INIT_SPLITTER一般传入分隔条对象m_wndSplitter-(VC7) "- gt; Attribute- gt; Linker- gt; Input-gt; Additional items on the "add SkinPlus DLL.lib or (VC6)" Project-gt; Settings- gt; Link-gt; Object/library "SkinPlusPlusDLL.lib into two. in your program contains header files# inlcude "SkinPlusPlus.h" 3. the procedures include initialization statement InitInstance () InitializeSkin (found ( "XPCorona.ssk")) Note : The above assumptions SkinPlusPlusDLL.lib. SkinPlusPlus.h, XPCorona.ssk are in the current directory, if not please change routing. 2. Skin unloading procedures in the uninstall function join ExitInstance () ExitSkin () 3. The implementation of the replacement skin that can function LoadSkin dynamic Eurocargo LoadSkin (found ( "XPCorona.ssk")) 4. Note InitializeSkin functi
Platform: | Size: 368640 | Author: 王杰 | Hits:

[Mathimatics-Numerical algorithmsC++ Matrix Template Class Library Lite V1.12

Description: This matrix C++ template class library is for performing common matrix operations in your C++ program like any other built-in data types. To install the package, just copy MATRIX.H file into the INCLUDE directory of your compiler and include this header file in your program source file
Platform: | Size: 39936 | Author: | Hits:

[Internet-NetworkMYIE流览器源代码(VC++)vb

Description: MYIE流览器源代码(VC++),vb环境运行 ============= For your information: I build myie32src with 1) Windows2000Professional + sp2 2) VC6.0 + sp5 + new "tlogstg.h" + new "exdisp.h". Copy "tlogstg.h" and "exdisp.h" to your VC include directory, like "C:\Program Files\Microsoft Visual Studio\VC98\Include". Please backup and then overwrite any old file.-MYIE browser source code (VC), vb environment running ============= For your information : I build with a myie32src) Windows2000Professional sp2 2) VC6.0 SP5 new "tlogstg.h" new "exdisp.h." Copy "tlogstg.h" and "exdisp.h" to your VC include directory, like "C : \ Program Files \ Microsoft Visual Studio \ VC98 \ Include." Please backup and then overwrite any old file.
Platform: | Size: 702464 | Author: | Hits:

[OtheruCOS-II_LPC2000

Description: pc.c是移植于μCOS-II的PC服务代码(pc.c) 主要改动: 1、#include "includes.h"改为"config.h" 2、在屏幕上显示改为向UART0发送数据,在电脑上显示,影响的函数: PC_DispChar()、PC_DispClrCol()、PC_DispClrRow()、PC_DispClrScr()和PC_DispStr() 3、获取键值改为从UART0获取,影响的函数:PC_GetKey() 4、因为没有dos环境所作的修改,影响的函数: PC_DOSReturn()、PC_DOSSaveReturn()、PC_SetTickRate()(删除)、PC_VectGet()(删除)和 PC_VectSet(删除)。 5、因为定时器不同所作的修改,影响的函数: PC_ElapsedStart()和PC_ElapsedStop()。 6、因为实时时钟不同所作的修改,影响的函数:PC_GetDateTime()。-pc.c is transplanted COS-II PC service code (pc.c) major changes : 1,# include "includes.h" with "config.h" two, displayed on the screen changed to UART0 send data on the computer, the function : PC_DispChar (), PC_DispClrCol (), PC_DispClrRow (), PC_DispClrScr (), and PC_DispStr () 3, access keys to read from UART0 acquisition, the function : PC_GetKey () 4 because no dos environment changes, it will affect the function : PC_DOSReturn (), PC_DOSSaveReturn (), PC_SetTickRate () (deleted), PC_VectGet () (deleted) and PC_VectSet (deleted). 5, because the timer made different changes, it will affect the function : PC_ElapsedStart (), and PC_ElapsedStop (). 6, because of different real-time clock's revision, the function : PC_GetDateTime ().
Platform: | Size: 14336 | Author: hyh | Hits:

[VHDL-FPGA-Verilogregs

Description: 3. Distribution of this core must be free of charge. Charging is -- allowed only for value added services. Value added services -- would include copying fees, modifications, customizations, and -- inclusion in other products.-3. Distribution of this core must be free of charge. Charging is-- allowed only for value added services. Value added services-- would include copying fees, modifications, customizations, and-- inclusion in other products.
Platform: | Size: 2048 | Author: 江浩 | Hits:

[CommunicationQueueTest

Description: VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue<QueueData> TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue /////////////////////////////////////////# include "Queue . h "//define queue data struct QueueData struct (char data [20] int nId)// define queue typedef TQueuelt; QueueDatagt; TMyQueue// put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data.data, "hello!") data.nId m_pMyQueue.TryPut = 0 (data))// try put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data. data, "hello!") data.nId = 0 if (m_pMyQueue.TryPut (data)! = 0) (MessageBox ( "put queue error")) else (MessageBox ( "put queue success")))// get data from QueueData data queue (memset (data, 0, sizeof (data))
Platform: | Size: 33792 | Author: zj | Hits:

[SCMinclude.h

Description: 用于61单片机,内含大量的头文件,使用起来很方便-for 61 microcontroller, the first containing a large number of documents, was easy to use
Platform: | Size: 53248 | Author: 田天 | Hits:

[OS programFX2.H

Description: FX2.H和FX2REGS.H,cy7c68013芯片的固件程序需要include这两个头文件,应该对usb开发的有些用-FX2.H and FX2REGS.H, cy7c68013 chip firmware files need to include these two heads, there should be some development with usb
Platform: | Size: 10240 | Author: yanping | Hits:

[Otherinclude

Description: 一些经常遇到的.h文件,经过整理汇总,会有帮助的-Frequently encountered. H file, after finishing summary, there will be helpful
Platform: | Size: 111616 | Author: dsb | Hits:

[assembly languageC

Description: 一些所需要的头文件不常用的仅限了解一些如(#include.h)-C(#include.h)
Platform: | Size: 4096 | Author: 李凌 | Hits:

[File OperateSti_5518-h.Files

Description: Include .h Files of STI5518
Platform: | Size: 143360 | Author: TBX | Hits:

[Embeded Linuxinclude

Description: ti davinci ARM平台可能需要的头文件,davincievm.h,davincievm_aic33.h,davincievm_ddr.h,davincievm_i2c.h,davincievm_led.h,davincievm_flash.h-ti davinci ARM platforms may be required header files,
Platform: | Size: 15360 | Author: ang | Hits:

[ADO-ODBCinclude

Description: mysql数据库访问需要的h头文件,这个在安装mysql时选择自定义安装会有。-mysql database access required h header file, the mysql is installed there will be a custom installation when you choose.
Platform: | Size: 92160 | Author: | Hits:

[ELanguageh.265

Description: H.265是ITU-T VCEG 继H.264之后所制定的新的视频编码标准。H.265标准围绕着现有的视频编码标准H.264,保留原来的某些技术,同时对一些相关的技术加以改进。新技术使用先进的技术用以改善码流、编码质量、延时和算法复杂度之间的关系,达到最优化设置。具体的研究内容包括:提高压缩效率、提高鲁棒性和错误恢复能力、减少实时的时延、减少信道获取时间和随机接入时延、降低复杂度等。H264由于算法优化,可以低于1Mbps的速度实现标清数字图像传送;H265则可以实现利用1~2Mbps的传输速度传送720P(分辨率1280*720)普通高清音视频传送。(H.265 is a new video coding standard developed by ITU-T VCEG after H.264. H.265 standard revolves around the existing video coding standard H.264. The new technology uses advanced technology to improve the relationship between code stream, coding quality, delay and algorithm complexity. The specific research contents include: improving compression efficiency, improving robustness and error recovery ability, reducing real-time delay, reducing channel acquisition time and random access delay. Because of the optimization of the algorithm, H264 can realize the standard digital image transmission at a speed of less than 1Mbps. H265 can transmit 720P (resolution 1280g 720) HD audio and video transmission at 1mbps.)
Platform: | Size: 16252928 | Author: DaisyK | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net