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 / authdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-05  |  874 b   |  32 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:   authdlg.h
  9. //
  10. //  PURPOSE:  contains authdlg declarations
  11. //
  12.  
  13. #ifndef _AUTHDLG_H
  14. #define _AUTHDLG_H
  15.  
  16. //-------------------------------------------------------------------------
  17. //  Authentication dialog defines.
  18.  
  19. #define IDE_USERNAME  600
  20. #define IDE_PASSWORD  601
  21. #define IDE_DOMAIN    602
  22.  
  23.  
  24. #ifdef WIN16
  25. // Dialog box procedures must be exported in 16-bit applications for Windows.
  26. LRESULT CALLBACK __export AuthDlg(HWND, UINT, WPARAM, LPARAM);
  27. #else
  28. LRESULT CALLBACK AuthDlg(HWND, UINT, WPARAM, LPARAM);
  29. #endif
  30.  
  31. #endif
  32.