home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / ras / rasberry / dialdlg.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  817b  |  31 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1997  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   dialdlg.h
  9. //
  10. //  PURPOSE:  contains dialdlg declarations
  11. //
  12.  
  13. #ifndef _DIALDLG_H
  14. #define _DIALDLG_H
  15.  
  16. //-------------------------------------------------------------------------
  17. //  Dialing dialog defines.
  18.  
  19. #define IDT_MESSAGE     300
  20.  
  21.  
  22. #ifdef WIN16
  23. // Dialog box procedures must be exported in 16-bit applications for Windows.
  24. LRESULT CALLBACK __export DialDlg(HWND, UINT, WPARAM, LPARAM);
  25. #else
  26. LRESULT CALLBACK DialDlg(HWND, UINT, WPARAM, LPARAM);
  27. #endif
  28.  
  29. #endif
  30.  
  31.