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 / statdlg.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  961b  |  36 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:   statdlg.h
  9. //
  10. //  PURPOSE:  contains statdlg declarations
  11. //
  12.  
  13. #ifndef _STATDLG_H
  14. #define _STATDLG_H
  15.  
  16. //-------------------------------------------------------------------------
  17. //  Status dialog defines.
  18.  
  19. #define IDE_CONNECTION  500
  20. #define IDE_STATUS      501
  21. #define IDE_DEVICE      502
  22. #define IDE_ERROR       503
  23. #define IDE_TYPE        504
  24. #define IDB_REFRESH     510
  25.  
  26.  
  27. #ifdef WIN16
  28. // Dialog box procedures must be exported in 16-bit applications for Windows.
  29. LRESULT CALLBACK __export StatDlg(HWND, UINT, WPARAM, LPARAM);
  30. #else
  31. LRESULT CALLBACK StatDlg(HWND, UINT, WPARAM, LPARAM);
  32. #endif
  33.  
  34. #endif
  35.  
  36.