WINTYP.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*************************************************************************
  2.                 Copyright Microsoft Corp. 1992-1996
  3.                     Remote Machine strout sample
  4.     FILE    :   wintyp.idl
  5.     PURPOSE :   This file defines the interface for the strout example
  6.   
  7. *************************************************************************/
  8. [
  9. uuid(da2a84e0-cabd-11cf-a8a4-00a0c9038450),     // UUID 
  10. pointer_default(unique),                        // Pointer default 
  11. version(1.0)                                    // Program version 
  12. ]
  13. interface wintyp_sample
  14. {
  15.     import "wtypes.idl";    // Need this to support the window dataypes
  16.     /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  17.     /* Declaration of the remote procedure.                             */
  18.     /* This procedure will send the bitmap to the server, the server    */
  19.     /* will then either flip the image, or find the edges in it, before */
  20.     /* sending it back to the client.                                   */
  21.     /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  22.     BOOL ChangeBitmapRemote(
  23.         [in] unsigned short action,     // The action to take on the image
  24.         [in, out] HBITMAP   *bitmap);   // The bitmap to send over the line
  25.     void ShutDown(void);            // Procedure to shut down the server
  26. }