home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / numega / sc501.exe / data1.cab / Examples / ABOUTBOX.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  1.1 KB  |  44 lines

  1. /*
  2.  * ABOUTBOX.h
  3.  * $Header: /bcsample/BUGBNCHX/ABOUTBOX.H 1     5/28/96 1:11p Dave $
  4.  *
  5.  * Description:
  6.  *  The declaration of the AboutBox routines that support the about box.
  7.  *
  8.  * Notes:
  9.  *  <implementation notes go here>
  10.  *
  11.  ***********************************************************************
  12.  *
  13.  * Nu-Mega Technologies, Inc.
  14.  * P.O. Box 7780
  15.  * Nashua, NH 03060
  16.  *
  17.  * (c) Copyright 1994, 1995 Nu-Mega Technologies, Inc.
  18.  * ALL RIGHTS RESERVED.
  19.  *
  20.  ***********************************************************************
  21.  *
  22.  **********************************************************************/
  23. #ifndef _ABOUTBOX_H
  24. #define _ABOUTBOX_H
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. ////////////////////////////////////////////////////////////////////
  31. // AboutBox DLGPROC function
  32.  
  33. BOOL CALLBACK AboutBox_DlgProc ( HWND    hDlg   ,
  34.                                  UINT    uMsg   ,
  35.                                  WPARAM  wParam ,
  36.                                  LPARAM  lParam  ) ;
  37.  
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42. #endif      // _ABOUTBOX_H
  43.  
  44.