File: libwebp.go

package info (click to toggle)
golang-github-bep-gowebp 0.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,660 kB
  • sloc: ansic: 76,136; sh: 1,085; makefile: 585; python: 416; cpp: 262
file content (45 lines) | stat: -rw-r--r-- 1,235 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 2.0.10
 *
 * This file is not intended to be easily readable and contains a number of
 * coding conventions designed to improve portability and efficiency. Do not make
 * changes to this file unless you know what you are doing--modify the SWIG
 * interface file instead.
 * ----------------------------------------------------------------------------- */

package libwebp

import _ "runtime/cgo"
import "unsafe"

type _ unsafe.Pointer

type _swig_fnptr *byte
type _swig_memberptr *byte

//extern libwebpSwigCgocall
func SwigCgocall()

//extern libwebpSwigCgocallDone
func SwigCgocallDone()

//extern libwebpSwigCgocallBack
func SwigCgocallBack()

//extern libwebpSwigCgocallBackDone
func SwigCgocallBackDone()

func WebPGetDecoderVersion() int
func Wrapped_WebPGetInfo(string, []int, []int) int

// WebPGetInfo has 2 output parameters, provide a version in the more natural
// go idiom:
func WebPGetInfo(webp []byte) (ok bool, width int, height int) {
	w := []int{0}
	h := []int{0}
	ok = Wrapped_WebPGetInfo(string(webp), w, h) != 0
	width = w[0]
	height = h[0]
	return
}