Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
caf78379
Kaydet (Commit)
caf78379
authored
Ara 10, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added remaining declarations needed/used in glmodule.c; keeps gcc -Wall happy.
üst
c1547d93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
10 deletions
+56
-10
cgensupport.h
Include/cgensupport.h
+28
-5
cgensupport.h
Modules/cgensupport.h
+28
-5
No files found.
Include/cgensupport.h
Dosyayı görüntüle @
caf78379
...
...
@@ -44,11 +44,34 @@ typedef char *string;
#define mknewfloatobject(x) PyFloat_FromDouble(x)
#define mknewcharobject(ch) Py_BuildValue("c", ch)
extern
int
PyArg_GetObject
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
PyObject
**
p_a
));
extern
int
PyArg_GetLong
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShort
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetFloat
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
extern
int
PyArg_GetString
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
string
*
p_a
));
extern
int
PyArg_GetObject
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
PyObject
**
p_a
));
extern
int
PyArg_GetLong
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShort
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetFloat
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
extern
int
PyArg_GetString
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
string
*
p_a
));
extern
int
PyArg_GetChar
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
char
*
p_a
));
extern
int
PyArg_GetLongArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
long
*
p_a
));
extern
int
PyArg_GetShortArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
short
*
p_a
));
extern
int
PyArg_GetDoubleArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
double
*
p_a
));
extern
int
PyArg_GetFloatArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
float
*
p_a
));
extern
int
PyArg_GetLongArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShortArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetDoubleArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
double
*
p_a
));
extern
int
PyArg_GetFloatArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
#ifdef __cplusplus
}
...
...
Modules/cgensupport.h
Dosyayı görüntüle @
caf78379
...
...
@@ -44,11 +44,34 @@ typedef char *string;
#define mknewfloatobject(x) PyFloat_FromDouble(x)
#define mknewcharobject(ch) Py_BuildValue("c", ch)
extern
int
PyArg_GetObject
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
PyObject
**
p_a
));
extern
int
PyArg_GetLong
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShort
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetFloat
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
extern
int
PyArg_GetString
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
string
*
p_a
));
extern
int
PyArg_GetObject
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
PyObject
**
p_a
));
extern
int
PyArg_GetLong
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShort
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetFloat
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
extern
int
PyArg_GetString
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
string
*
p_a
));
extern
int
PyArg_GetChar
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
char
*
p_a
));
extern
int
PyArg_GetLongArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
long
*
p_a
));
extern
int
PyArg_GetShortArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
short
*
p_a
));
extern
int
PyArg_GetDoubleArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
double
*
p_a
));
extern
int
PyArg_GetFloatArray
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
int
n
,
float
*
p_a
));
extern
int
PyArg_GetLongArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
long
*
p_a
));
extern
int
PyArg_GetShortArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
short
*
p_a
));
extern
int
PyArg_GetDoubleArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
double
*
p_a
));
extern
int
PyArg_GetFloatArraySize
Py_PROTO
((
PyObject
*
args
,
int
nargs
,
int
i
,
float
*
p_a
));
#ifdef __cplusplus
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment