mirror of https://github.com/tongzx/nt5src
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
25 lines
348 B
/*
|
|
* canon.h - Canonical path manipulation module description.
|
|
*/
|
|
|
|
|
|
/* Constants
|
|
************/
|
|
|
|
#define MAX_NETRESOURCE_LEN (2 * MAX_PATH_LEN)
|
|
|
|
|
|
/* Types
|
|
********/
|
|
|
|
/* NETRESOURCE buffer */
|
|
|
|
typedef union _netresourcebuf
|
|
{
|
|
NETRESOURCE nr;
|
|
|
|
BYTE rgbyte[MAX_NETRESOURCE_LEN];
|
|
}
|
|
NETRESOURCEBUF;
|
|
DECLARE_STANDARD_TYPES(NETRESOURCEBUF);
|
|
|