QUDCLN.IDL
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
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);
- }