diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-02-07 02:56:31 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-02-07 02:56:31 +0100 |
commit | 223685875faa568d97ff1d5324fe994d24f618e7 (patch) | |
tree | 49ced972571b0fda56ef9f4ee63bd5aea13819a1 /setupapi | |
parent | 652158ec3ce59aa45c610b6db2fa32ce92ab8cce (diff) |
setupapi: Do not export the toGo/toWindows functions
Diffstat (limited to 'setupapi')
-rw-r--r-- | setupapi/setupapi_windows_test.go | 2 | ||||
-rw-r--r-- | setupapi/types_windows.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/setupapi/setupapi_windows_test.go b/setupapi/setupapi_windows_test.go index 2325164..e6b00c9 100644 --- a/setupapi/setupapi_windows_test.go +++ b/setupapi/setupapi_windows_test.go @@ -169,7 +169,7 @@ func TestDevInfo_BuildDriverInfoList(t *testing.T) { continue } - if driverData2, err2 := driverData.ToGo().ToWindows(); err2 != nil || *driverData2 != *driverData { + if driverData2, err2 := driverData.toGo().toWindows(); err2 != nil || *driverData2 != *driverData { t.Error("Error converting between SP_DRVINFO_DATA and DrvInfoData") } diff --git a/setupapi/types_windows.go b/setupapi/types_windows.go index 1fb9a8f..7d16d43 100644 --- a/setupapi/types_windows.go +++ b/setupapi/types_windows.go @@ -326,7 +326,7 @@ type SP_DRVINFO_DATA struct { DriverVersion uint64 } -func (data *SP_DRVINFO_DATA) ToGo() *DrvInfoData { +func (data *SP_DRVINFO_DATA) toGo() *DrvInfoData { return &DrvInfoData{ DriverType: data.DriverType, Description: windows.UTF16ToString(data.Description[:]), @@ -373,7 +373,7 @@ type DrvInfoData struct { DriverVersion uint64 } -func (DriverInfoData *DrvInfoData) ToWindows() (data *SP_DRVINFO_DATA, err error) { +func (DriverInfoData *DrvInfoData) toWindows() (data *SP_DRVINFO_DATA, err error) { data = &SP_DRVINFO_DATA{ DriverType: DriverInfoData.DriverType, DriverDate: DriverInfoData.DriverDate, |