We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e27bb commit 835472eCopy full SHA for 835472e
ext/pycall/pycall.c
@@ -1,4 +1,5 @@
1
#include "pycall_internal.h"
2
+#include "pycall.h"
3
#include <ruby/encoding.h>
4
5
#include <stdarg.h>
ext/pycall/pycall.h
@@ -0,0 +1,21 @@
+#ifndef PYCALL_H
+#define PYCALL_H 1
+
+#if defined(__cplusplus)
+extern "C" {
6
+#if 0
7
+} /* satisfy cc-mode */
8
+#endif
9
10
11
+VALUE pycall_pyptr_new(PyObject *pyobj);
12
+PyObject *pycall_pyptr_get_pyobj_ptr(VALUE pyptr);
13
14
15
16
+{ /* satisfy cc-mode */
17
18
+} /* extern "C" { */
19
20
21
+#endif /* PYCALL_H */
0 commit comments