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.

25 lines
348 B

  1. /*
  2. * canon.h - Canonical path manipulation module description.
  3. */
  4. /* Constants
  5. ************/
  6. #define MAX_NETRESOURCE_LEN (2 * MAX_PATH_LEN)
  7. /* Types
  8. ********/
  9. /* NETRESOURCE buffer */
  10. typedef union _netresourcebuf
  11. {
  12. NETRESOURCE nr;
  13. BYTE rgbyte[MAX_NETRESOURCE_LEN];
  14. }
  15. NETRESOURCEBUF;
  16. DECLARE_STANDARD_TYPES(NETRESOURCEBUF);