home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l410 / 1.ddi / CDK / CIRCLE1 / CIRCLE.C$ / CIRCLE.bin
Encoding:
Text File  |  1992-02-13  |  1.2 KB  |  35 lines

  1. //---------------------------------------------------------------------------
  2. //        Copyright (C) 1991 Microsoft Corporation
  3. //
  4. // You have a royalty-free right to use, modify, reproduce and distribute
  5. // the Sample Custom Control Files (and/or any modified version) in any way
  6. // you find useful, provided that you agree that Microsoft has no warranty,
  7. // obligation or liability for any Custom Control File.
  8. //---------------------------------------------------------------------------
  9. // Circle.c
  10. //---------------------------------------------------------------------------
  11. // Contains control procedure for CIRCLE1 control
  12. //---------------------------------------------------------------------------
  13.  
  14. #define  NOCOMM
  15. #include <windows.h>
  16.  
  17. #include <vbapi.h>
  18. #include "circle.h"
  19.  
  20.  
  21. //---------------------------------------------------------------------------
  22. // Circle Control Procedure
  23. //---------------------------------------------------------------------------
  24. LONG FAR PASCAL _export CircleCtlProc
  25. (
  26.     HCTL   hctl,
  27.     HWND   hwnd,
  28.     USHORT msg,
  29.     USHORT wp,
  30.     LONG   lp
  31. )
  32. {
  33.     return VBDefControlProc(hctl, hwnd, msg, wp, lp);
  34. }
  35.