Gitiles
Code Review
Sign In
gerrit.opencord.org
/
voltha-openolt-adapter
/
refs/heads/voltha-2.5
/
.
/
vendor
/
gopkg.in
/
jcmturner
/
rpc.v1
/
mstypes
/
common.go
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
}