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 / phbkdlg.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  903b  |  34 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:   phbkdlg.h
  9. //
  10. //  PURPOSE:  contains phbkdlg declarations
  11. //
  12.  
  13. #ifndef _PHBKDLG_H
  14. #define _PHBKDLG_H
  15.  
  16. //-------------------------------------------------------------------------
  17. //  phbkdlg dialog defines.
  18.  
  19. #define IDL_ENTRY       400
  20. #define IDB_DIAL        401
  21. #define IDC_USECURRENT  402
  22.  
  23. extern BOOL g_bUseCurrent;
  24.  
  25. #ifdef WIN16
  26. // Dialog box procedures must be exported in 16-bit applications for Windows.
  27. LRESULT CALLBACK __export PhbkDlg(HWND, UINT, WPARAM, LPARAM);
  28. #else
  29. LRESULT CALLBACK PhbkDlg(HWND, UINT, WPARAM, LPARAM);
  30. #endif
  31.  
  32. #endif
  33.  
  34.