- Code/Resource
- Windows Develop
- Linux-Unix program
- Internet-Socket-Network
- Web Server
- Browser Client
- Ftp Server
- Ftp Client
- Browser Plugins
- Proxy Server
- Email Server
- Email Client
- WEB Mail
- Firewall-Security
- Telnet Server
- Telnet Client
- ICQ-IM-Chat
- Search Engine
- Sniffer Package capture
- Remote Control
- xml-soap-webservice
- P2P
- WEB(ASP,PHP,...)
- TCP/IP Stack
- SNMP
- Grid Computing
- SilverLight
- DNS
- Cluster Service
- Network Security
- Communication-Mobile
- Game Program
- Editor
- Multimedia program
- Graph program
- Compiler program
- Compress-Decompress algrithms
- Crypt_Decrypt algrithms
- Mathimatics-Numerical algorithms
- MultiLanguage
- Disk/Storage
- Java Develop
- assembly language
- Applications
- Other systems
- Database system
- Embeded-SCM Develop
- FlashMX/Flex
- source in ebook
- Delphi VCL
- OS Develop
- MiddleWare
- MPI
- MacOS develop
- LabView
- ELanguage
- Software/Tools
- E-Books
- Artical/Document
QUDCLN.IDL
Package: MSDN_VC98.zip [view]
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 1k
Category:
Windows Develop
Development Platform:
Visual C++
- //+---------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright 1992 - 1997 Microsoft Corporation.
- //
- // File: qudcln.idl
- //
- // Contents: definition for IQuadrantClient
- //
- // History: 4-13-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- //+---------------------------------------------------------------------------
- //
- // Class: IQuadrantClient (qc)
- //
- // Purpose: interface implemented by fractal engines that wish to use the
- // Quadrant Fractal Engine Helper
- //
- // Interface: ComputePoint -- asks the fractal engine which color should
- // be painted at a given point on the graph
- // DoneDrawingGraph -- notifies fractal engine that the graph
- // is done
- //
- // History: 4-13-94 stevebl Created
- // 7-07-94 stevebl Modified definition of ComputePoint
- //
- //----------------------------------------------------------------------------
- [
- local,
- object,
- uuid(2a0e4fbc-3908-101b-8963-00000b65c75b),
- pointer_default(unique)
- ]
- interface IQuadrantClient : IUnknown
- {
- import "unknwn.idl";
- HRESULT ComputePoint(unsigned * puColor, int x, int y);
- HRESULT DoneDrawingGraph(void);
- }