summaryrefslogtreecommitdiffstats
path: root/tun/wintun/memmod/memmod_windows_32.go
blob: 75d7ca1bb9c58917762b98d72021fdbf457734c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//go:build (windows && 386) || (windows && arm)
// +build windows,386 windows,arm

/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2021 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
}