common.go 219 B

12345678910
  1. package mstypes
  2. // LPWSTR implements https://msdn.microsoft.com/en-us/library/cc230355.aspx
  3. type LPWSTR struct {
  4. Value string `ndr:"pointer,conformant,varying"`
  5. }
  6. func (s *LPWSTR) String() string {
  7. return s.Value
  8. }