blob: fb6510d1cbc3d0979705ca84346a0ea17d3a5011 [file] [log] [blame]
khenaidood948f772021-08-11 17:49:24 -04001// Package mstypes provides implemnations of some Microsoft data types [MS-DTYP] https://msdn.microsoft.com/en-us/library/cc230283.aspx
2package mstypes
3
4// LPWSTR implements https://msdn.microsoft.com/en-us/library/cc230355.aspx
5type LPWSTR struct {
6 Value string `ndr:"pointer,conformant,varying"`
7}
8
9// String returns the string representation of LPWSTR data type.
10func (s *LPWSTR) String() string {
11 return s.Value
12}