Leaked source code of windows server 2003
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.

61 lines
2.0 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows for Workgroups **/
  3. /** Copyright (C) Microsoft Corp., 1991-1992 **/
  4. /*****************************************************************/
  5. /* NPORD.H -- Network service provider ordinal definitions.
  6. *
  7. * This is a PRIVATE header file. Nobody but the MNR needs to call
  8. * a network provider directly.
  9. *
  10. * History:
  11. * 03/29/93 gregj Created
  12. * 05/27/97 gregj Taken from WNET source to implement NP delay load stub
  13. *
  14. */
  15. #ifndef _INC_NPORD
  16. #define _INC_NPORD
  17. #ifndef RC_INVOKED
  18. #pragma pack(1) /* Assume byte packing throughout */
  19. #endif /* !RC_INVOKED */
  20. #ifdef __cplusplus
  21. extern "C" { /* Assume C declarations for C++ */
  22. #endif /* __cplusplus */
  23. #define ORD_GETCONNECTIONS 12
  24. #define ORD_GETCAPS 13
  25. //#define ORD_DEVICEMODE 14 /* no longer supported */
  26. #define ORD_GETUSER 16
  27. #define ORD_ADDCONNECTION 17
  28. #define ORD_CANCELCONNECTION 18
  29. //#define ORD_PROPERTYDIALOG 29 /* no longer supported */
  30. //#define ORD_GETDIRECTORYTYPE 30 /* no longer supported */
  31. //#define ORD_DIRECTORYNOTIFY 31 /* no longer supported */
  32. //#define ORD_GETPROPERTYTEXT 32 /* no longer supported */
  33. #define ORD_OPENENUM 33
  34. #define ORD_ENUMRESOURCE 34
  35. #define ORD_CLOSEENUM 35
  36. #define ORD_GETUNIVERSALNAME 36
  37. //#define ORD_SEARCHDIALOG 38 /* no longer supported */
  38. #define ORD_GETRESOURCEPARENT 41
  39. #define ORD_VALIDDEVICE 42
  40. #define ORD_LOGON 43
  41. #define ORD_LOGOFF 44
  42. #define ORD_GETHOMEDIRECTORY 45
  43. #define ORD_FORMATNETWORKNAME 46
  44. #define ORD_GETCONNPERFORMANCE 49
  45. #define ORD_GETPOLICYPATH 50
  46. #define ORD_GETRESOURCEINFORMATION 52
  47. #ifdef __cplusplus
  48. }
  49. #endif /* __cplusplus */
  50. #ifndef RC_INVOKED
  51. #pragma pack()
  52. #endif /* !RC_INVOKED */
  53. #endif /* !_INC_NPORD */