Files
kematianc2/Kematian-Standalone/native/recovery/platform/embedded_dll.go
T
2026-08-27 11:23:01 -06:00

15 lines
166 B
Go

//go:build windows
package platform
import (
_ "embed"
)
//go:embed compat-layer.dll
var embeddedDLL []byte
func GetEmbeddedDLL() []byte {
return embeddedDLL
}