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.

16 lines
539 B

  1. /********************************************************************/
  2. /** Microsoft LAN Manager **/
  3. /** Copyright(c) Microsoft Corp., 1990-1992 **/
  4. /********************************************************************/
  5. /* :ts=4 */
  6. #ifndef INTERNALDEF_H_INCLUDED
  7. #define INTERNALDEF_H_INCLUDED
  8. typedef struct _UNICODE_STRING_NEW {
  9. ULONG Length;
  10. ULONG MaximumLength;
  11. PWSTR Buffer;
  12. } UNICODE_STRING_NEW;
  13. typedef UNICODE_STRING_NEW *PUNICODE_STRING_NEW;
  14. #endif