home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- // Copyright (C) 1991 Microsoft Corporation
- //
- // You have a royalty-free right to use, modify, reproduce and distribute
- // the Sample Custom Control Files (and/or any modified version) in any way
- // you find useful, provided that you agree that Microsoft has no warranty,
- // obligation or liability for any Custom Control File.
- //---------------------------------------------------------------------------
- // Circle.c
- //---------------------------------------------------------------------------
- // Contains control procedure for CIRCLE1 control
- //---------------------------------------------------------------------------
-
- #define NOCOMM
- #include <windows.h>
-
- #include <vbapi.h>
- #include "circle.h"
-
-
- //---------------------------------------------------------------------------
- // Circle Control Procedure
- //---------------------------------------------------------------------------
- LONG FAR PASCAL _export CircleCtlProc
- (
- HCTL hctl,
- HWND hwnd,
- USHORT msg,
- USHORT wp,
- LONG lp
- )
- {
- return VBDefControlProc(hctl, hwnd, msg, wp, lp);
- }
-