Source File
common.go
Belonging Package
github.com/jcmturner/rpc/v2/mstypes
// Package mstypes provides implemnations of some Microsoft data types [MS-DTYP] https://msdn.microsoft.com/en-us/library/cc230283.aspx
package mstypes
// LPWSTR implements https://msdn.microsoft.com/en-us/library/cc230355.aspx
type LPWSTR struct {
Value string `ndr:"pointer,conformant,varying"`
}
// String returns the string representation of LPWSTR data type.
func ( *LPWSTR) () string {
return .Value
}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |