blob: 62cac286c20e09eb0d52ccf8844e4ea6a2a2e06a [file] [log] [blame]
Scott Baker8461e152019-10-01 14:44:30 -07001package mstypes
2
3// LPWSTR implements https://msdn.microsoft.com/en-us/library/cc230355.aspx
4type LPWSTR struct {
5 Value string `ndr:"pointer,conformant,varying"`
6}
7
8func (s *LPWSTR) String() string {
9 return s.Value
10}