diff options
| author | 2022-12-27 08:29:42 +0000 | |
|---|---|---|
| committer | 2022-12-27 08:29:42 +0000 | |
| commit | b966d3b15712f645b53bc2396fdd29f4ce706850 (patch) | |
| tree | b86d17b6c153fd97d31b12bc581f83778101aa19 /vendor/golang.org/x/sys/windows | |
| parent | [chore]: Bump codeberg.org/gruf/go-bytesize from 1.0.0 to 1.0.2 (#1285) (diff) | |
| download | gotosocial-b966d3b15712f645b53bc2396fdd29f4ce706850.tar.xz | |
[chore]: Bump github.com/gin-gonic/gin from 1.8.1 to 1.8.2 (#1286)
Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.8.1 to 1.8.2.
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gin-gonic/gin/compare/v1.8.1...v1.8.2)
---
updated-dependencies:
- dependency-name: github.com/gin-gonic/gin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/golang.org/x/sys/windows')
| -rw-r--r-- | vendor/golang.org/x/sys/windows/syscall_windows.go | 1 | ||||
| -rw-r--r-- | vendor/golang.org/x/sys/windows/zsyscall_windows.go | 7 | 
2 files changed, 8 insertions, 0 deletions
| diff --git a/vendor/golang.org/x/sys/windows/syscall_windows.go b/vendor/golang.org/x/sys/windows/syscall_windows.go index 7a6ba43a7..a49853e9d 100644 --- a/vendor/golang.org/x/sys/windows/syscall_windows.go +++ b/vendor/golang.org/x/sys/windows/syscall_windows.go @@ -367,6 +367,7 @@ func NewCallbackCDecl(fn interface{}) uintptr {  //sys	IsWindowUnicode(hwnd HWND) (isUnicode bool) = user32.IsWindowUnicode  //sys	IsWindowVisible(hwnd HWND) (isVisible bool) = user32.IsWindowVisible  //sys	GetGUIThreadInfo(thread uint32, info *GUIThreadInfo) (err error) = user32.GetGUIThreadInfo +//sys	GetLargePageMinimum() (size uintptr)  // Volume Management Functions  //sys	DefineDosDevice(flags uint32, deviceName *uint16, targetPath *uint16) (err error) = DefineDosDeviceW diff --git a/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/vendor/golang.org/x/sys/windows/zsyscall_windows.go index 96ba8559c..ac60052e4 100644 --- a/vendor/golang.org/x/sys/windows/zsyscall_windows.go +++ b/vendor/golang.org/x/sys/windows/zsyscall_windows.go @@ -252,6 +252,7 @@ var (  	procGetFileType                                          = modkernel32.NewProc("GetFileType")  	procGetFinalPathNameByHandleW                            = modkernel32.NewProc("GetFinalPathNameByHandleW")  	procGetFullPathNameW                                     = modkernel32.NewProc("GetFullPathNameW") +	procGetLargePageMinimum                                  = modkernel32.NewProc("GetLargePageMinimum")  	procGetLastError                                         = modkernel32.NewProc("GetLastError")  	procGetLogicalDriveStringsW                              = modkernel32.NewProc("GetLogicalDriveStringsW")  	procGetLogicalDrives                                     = modkernel32.NewProc("GetLogicalDrives") @@ -2180,6 +2181,12 @@ func GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (  	return  } +func GetLargePageMinimum() (size uintptr) { +	r0, _, _ := syscall.Syscall(procGetLargePageMinimum.Addr(), 0, 0, 0, 0) +	size = uintptr(r0) +	return +} +  func GetLastError() (lasterr error) {  	r0, _, _ := syscall.Syscall(procGetLastError.Addr(), 0, 0, 0, 0)  	if r0 != 0 { | 
