Files
kematianc2/Kematian-Standalone/native/recovery/platform/embedded_dll.go
T

15 lines
166 B
Go
Raw Normal View History

2026-08-27 11:23:01 -06:00
//go:build windows
package platform
import (
_ "embed"
)
//go:embed compat-layer.dll
var embeddedDLL []byte
func GetEmbeddedDLL() []byte {
return embeddedDLL
}