mirror of
https://git.zx2c4.com/wireguard-windows
synced 2024-11-10 16:59:18 +00:00
6ed37f30f5
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
17 lines
333 B
Go
17 lines
333 B
Go
//go:build (windows && 386) || (windows && arm)
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package memmod
|
|
|
|
func (opthdr *IMAGE_OPTIONAL_HEADER) imageOffset() uintptr {
|
|
return 0
|
|
}
|
|
|
|
func (module *Module) check4GBBoundaries(alignedImageSize uintptr) (err error) {
|
|
return
|
|
}
|