blob: 62cac286c20e09eb0d52ccf8844e4ea6a2a2e06a [file] [log] [blame]
package mstypes
// LPWSTR implements https://msdn.microsoft.com/en-us/library/cc230355.aspx
type LPWSTR struct {
Value string `ndr:"pointer,conformant,varying"`
}
func (s *LPWSTR) String() string {
return s.Value
}