虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Book-of-SAX-The-Simple-api-for-XM

  • From the Publisher Focus on 2D in Direct3D? teaches you all of the tools and tips you ll need to di

    From the Publisher Focus on 2D in Direct3D? teaches you all of the tools and tips you ll need to dive right in and begin creating your own games. If you have some knowledge of C or C++ and have been searching for a guide that will take your 2D programming into the third dimension, then search no more! In this book you ll learn the skills you ll need to move from the 2D API to Direct3D. Written from the point of view of a 2D programmer, Focus on 2D in Direct3D presents the fundamentals of the Direct3D API in an easy-to-use-and-understand format. Get ready to jump into the world of Direct3D!

    标签: the Publisher you teaches

    上传时间: 2015-09-01

    上传用户:ve3344

  • Networking for Dummies 8th Edition ,Written for even the most network-shy novice, this book begins w

    Networking for Dummies 8th Edition ,Written for even the most network-shy novice, this book begins with the most basic of basics and progresses through all the essentials, from cables, routers and hubs to building a wireless network.英文版 CHM格式

    标签: network-shy Networking for Dummies

    上传时间: 2015-12-16

    上传用户:shus521

  • The Funambol J2ME Mail Client aims to be a light, easy to use, free email client for J2ME devices.

    The Funambol J2ME Mail Client aims to be a light, easy to use, free email client for J2ME devices. The first release comes with a simple but effective UI, and a storage limited to the internal RMS only. This makes the application compatible with most of the phones around (minimum requirements are: MIDP2.0, CLDC 1.0, 512k of Storage). The mail synchronization using SyncML 1.2 over HTTP, thus removing any problem related to the access to IMAP or POP ports. The mail client synchonizes its address book with the one on the server, Its design is modular and can be extended in future with other mail protocols, a more sophisticated UI and access to the phone s AddressBook or filesystem for the devices allowing this. See the javadoc for more information on the structure of the library.

    标签: J2ME Funambol devices Client

    上传时间: 2014-01-05

    上传用户:gououo

  • Advanced SQL For this exercise, we will use the library schema. It includes information about book

    Advanced SQL For this exercise, we will use the library schema. It includes information about book titles in the library, information about library members, about the number of times the books were read by members, about the suppliers who supply books to the library, and about orders placed with the suppliers. To distinguish the table names used in this exercise from the table names in other exercise, each table name in this exercise ends with the character 4 .

    标签: information Advanced exercise includes

    上传时间: 2013-12-20

    上传用户:s363994250

  • Design of Integrated Circuits for Optical Communications deals with the design of high-speed integra

    Design of Integrated Circuits for Optical Communications deals with the design of high-speed integrated circuits for optical communication systems. Written for both students and practicing engineers, the book systematically takes the reader from basic concepts to advanced topics, establishing both rigor and intuition. The text emphasizes analysis and design in modern VLSI technologies, particularly CMOS, and presents numerous broadband circuit techniques. Leading researcher Behzad Razavi is also the author of Design of Analog CMOS Integrated Circuits.

    标签: Communications Integrated high-speed Circuits

    上传时间: 2013-12-21

    上传用户:zhouchang199

  • C++ XML is a book exclusively devoted to the pow er and complexities of integrating XML standards i

    C++ XML is a book exclusively devoted to the pow er and complexities of integrating XML standards into C++. As a developer,this is a book you cannot miss. C++ XML addresses all major standards,toolkits,and types of applications dealing with XML as a format for representing and exchanging data,as well as XML behavior,from a C++ standpoint. It explains the implementation of applications and reusuable frameworks for all major XML purposes exclusively using C/C++ parsers and toolkits, such as expat,Xerces,Xalan,libxml2,and Microsoft’s MSXML.

    标签: complexities exclusively integrating XML

    上传时间: 2014-03-11

    上传用户:zhaiyanzhong

  • S60 SDL is a Simple DirectMedia Layer adaptation for S60. SDL is a cross-platform multimedia library

    S60 SDL is a Simple DirectMedia Layer adaptation for S60. SDL is a cross-platform multimedia library: Applications and libraries built on SDL can easily be ported to other operating systems. But S60 SDL does more than makes porting easy: S60 multimedia applications can be implemented without any knowledge of Symbian C++ native API and a developer can use SDL and standard C, C++ interfaces. The SDL development supports both Nokia OpenC and Symbian stdlib (ESTLIB) C implementations.

    标签: cross-platform DirectMedia adaptation multimedia

    上传时间: 2014-01-24

    上传用户:wangyi39

  • UDDI for weblgoci In the main function, there is a list of functions calls that are commented. Each

    UDDI for weblgoci In the main function, there is a list of functions calls that are commented. Each of those function calls tests a functionality of the UDDI api. To run a test, simply uncomment one of the function calls, and then compile this file and run it.

    标签: commented functions weblgoci function

    上传时间: 2017-04-24

    上传用户:love_stanford

  • 数学公式库--非常不错 The GNU Scientific Library (GSL) is a collection of routines for numerical computing. T

    数学公式库--非常不错 The GNU Scientific Library (GSL) is a collection of routines for numerical computing. The routines have been written from scratch in C, and present a modern Applications Programming Interface (API) for C programmers, allowing wrappers to be written for very high level

    标签: Scientific collection computing numerical

    上传时间: 2013-12-17

    上传用户:yuanyuan123

  • I2C slave routines for the 87L

    The 87LPC76X Microcontroller combines in a small package thebenefits of a high-performance microcontroller with on-boardhardware supporting the Inter-Integrated Circuit (I2C) bus interface.The 87LPC76X can be programmed both as an I2C bus master, aslave, or both. An overview of the I2C bus and description of the bussupport hardware in the 87LPC76X microcontrollers appears inapplication note AN464, Using the 87LPC76X Microcontroller as anI2C Bus Master. That application note includes a programmingexample, demonstrating a bus-master code. Here we show anexample of programming the microcontroller as an I2C slave.The code listing demonstrates communications routines for the87LPC76X as a slave on the I2C bus. It compliments the program inAN464 which demonstrates the 87LPC76X as an I2C bus master.One may demonstrate two 87LPC76X devices communicating witheach other on the I2C bus, using the AN464 code in one, and theprogram presented here in the other. The examples presented hereand in AN464 allow the 87LPC76X to be either a master or a slave,but not both. Switching between master and slave roles in amultimaster environment is described in application note AN435.The software for a slave on the bus is relatively simple, as theprocessor plays a relatively passive role. It does not initiate bustransfers on its own, but responds to a master initiating thecommunications. This is true whether the slave receives or transmitsdata—transmission takes place only as a response to a busmaster’s request. The slave does not have to worry about arbitrationor about devices which do not acknowledge their address. As theslave is not supposed to take control of the bus, we do not demandit to resolve bus exceptions or “hangups”. If the bus becomesinactive the processor simply withdraws, not interfering with themaster (or masters) on the bus which should (hopefully) try toresolve the situation.

    标签: routines slave I2C 87L

    上传时间: 2013-11-19

    上传用户:shirleyYim