Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.5 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1989-1992 **/
  4. /*****************************************************************/
  5. /*
  6. * Windows/Network Interface -- LAN Manager Version
  7. *
  8. * Insert typedef which is excluded from netlib.h when the
  9. * OS2_INCLUDED switch is included. OS2_INCLUDED is necessary
  10. * to avoid a redefinition of BYTE. For this reason, to include
  11. * the str[...]f functions, include the following lines:
  12. * #include "winlocal.h"
  13. * #define OS2_INCLUDED
  14. * #include <netlib.h>
  15. * #undef OS2_INCLUDED
  16. * Note, that winlocal.h must be included before netlib.h.
  17. *
  18. * History:
  19. * terryk 08-Nov-1991 change ErrorPopup's WORD to UINT
  20. * chuckc 12-Dec-1991 move error message defines elsewhere,
  21. * misc cleanup.
  22. * Yi-HsinS 31-Dec-1991 Unicode work - move string literals
  23. * defines to strchlit.hxx
  24. * beng 21-Feb-1992 Relocate some BMIDs to focusdlg.h
  25. * beng 04-Aug-1992 Move resource IDs into official range;
  26. * dialog IDs return to here
  27. */
  28. #ifndef _WINLOCAL_H_
  29. #define _WINLOCAL_H_
  30. /*
  31. * The following manifests define the BITMAP names used by the browse
  32. * dialogs.
  33. * They are meant to be used with the DISPLAY_MAP class (they have a green
  34. * border for that represents the transparent color).
  35. */
  36. #define BMID_NETDIR 8001
  37. #define BMID_NETDIREX 8002
  38. #define BMID_PRINTER 8003
  39. #define BMID_PRINTER_UNAVAIL 8004
  40. #define BMID_SHARE_UNAVAIL 8006
  41. #define BMID_USER 8007
  42. #define BMID_GROUP 8008
  43. /* Bitmaps for share dialogs */
  44. #define BMID_SHARE 8010
  45. #define BMID_STICKYSHARE 8011
  46. #define BMID_IPCSHARE 8012
  47. /* Menu IDs (menus, not menuitems) */
  48. #define FMX_MENU 8001
  49. /* Dialog IDs */
  50. #define PASSWORD_DLG 8001
  51. #define OPENFILES_DLG 8002
  52. #define DLG_NETDEVLOGON 8003
  53. #define DLG_NETDEVMSGSEND 8004
  54. #define DLG_NETDEVDLG 8005
  55. #define DLG_INITWARN 8006
  56. #define DLG_NETDEVPASSWD 8007
  57. #define DLG_EXPIRY 8008
  58. #define DLG_FIND_PRINTER 8009
  59. #define DLG_SET_FOCUS 8010
  60. /*
  61. * include the error message ranges
  62. */
  63. #include <errornum.h>
  64. UINT MapError( APIERR usNetError );
  65. #endif