diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-02-12 22:57:38 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-02-21 14:52:36 +0200 |
| commit | 738f7f860c08f1322d09c72a3db44308f4a16404 (patch) | |
| tree | b0529693f90084dbb584290ec17a15a1caa6e6e3 /test cases/python3/3 cython/libdir/storer.h | |
| parent | 98d00386b141771a62668198f36bd38b1a9e6112 (diff) | |
| download | meson-738f7f860c08f1322d09c72a3db44308f4a16404.tar.gz | |
Added Cython sample project.
Diffstat (limited to 'test cases/python3/3 cython/libdir/storer.h')
| -rw-r--r-- | test cases/python3/3 cython/libdir/storer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/python3/3 cython/libdir/storer.h b/test cases/python3/3 cython/libdir/storer.h new file mode 100644 index 000000000..4f7191711 --- /dev/null +++ b/test cases/python3/3 cython/libdir/storer.h @@ -0,0 +1,8 @@ +#pragma once + +typedef struct _Storer Storer; + +Storer* storer_new(); +void storer_destroy(Storer *s); +int storer_get_value(Storer *s); +void storer_set_value(Storer *s, int v); |
