go-libwebp

Experimental translation from libwebp to Go source.
Log | Files | Refs | README | LICENSE

dlopen_unsupported.go (172B)


      1 //go:build !linux && !windows && !darwin
      2 
      3 package webp
      4 
      5 const libraryName = ""
      6 
      7 func dlopen(name string) (uintptr, error) {
      8 	return 0, fmt.Errorf("platform unsupported")
      9 }