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
b88b0bce
Kaydet (Commit)
b88b0bce
authored
Tem 31, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ANSIfied.
üst
cbfe3c89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
calldll.c
Mac/Modules/calldll.c
+6
-6
No files found.
Mac/Modules/calldll.c
Dosyayı görüntüle @
b88b0bce
...
@@ -45,8 +45,8 @@ PERFORMANCE OF THIS SOFTWARE.
...
@@ -45,8 +45,8 @@ PERFORMANCE OF THIS SOFTWARE.
#include <CodeFragments.h>
#include <CodeFragments.h>
/* Prototypes for routines not in any include file (shame, shame) */
/* Prototypes for routines not in any include file (shame, shame) */
extern
PyObject
*
ResObj_New
Py_PROTO
((
Handle
)
);
extern
PyObject
*
ResObj_New
(
Handle
);
extern
int
ResObj_Convert
Py_PROTO
((
PyObject
*
,
Handle
*
)
);
extern
int
ResObj_Convert
(
PyObject
*
,
Handle
*
);
static
PyObject
*
ErrorObject
;
static
PyObject
*
ErrorObject
;
...
@@ -61,7 +61,7 @@ static PyObject *ErrorObject;
...
@@ -61,7 +61,7 @@ static PyObject *ErrorObject;
/* Prototypes we use for routines and arguments */
/* Prototypes we use for routines and arguments */
typedef
long
anything
;
typedef
long
anything
;
typedef
anything
(
*
anyroutine
)
Py_PROTO
((...)
);
typedef
anything
(
*
anyroutine
)
(...
);
/* Other constants */
/* Other constants */
#define MAXNAME 31
/* Maximum size of names, for printing only */
#define MAXNAME 31
/* Maximum size of names, for printing only */
...
@@ -76,9 +76,9 @@ typedef anything (*anyroutine) Py_PROTO((...));
...
@@ -76,9 +76,9 @@ typedef anything (*anyroutine) Py_PROTO((...));
**
**
** Hence, optional return values are also implementable.
** Hence, optional return values are also implementable.
*/
*/
typedef
anything
(
*
py2c_converter
)
Py_PROTO
((
PyObject
*
)
);
typedef
anything
(
*
py2c_converter
)
(
PyObject
*
);
typedef
PyObject
*
(
*
c2py_converter
)
Py_PROTO
((
anything
)
);
typedef
PyObject
*
(
*
c2py_converter
)
(
anything
);
typedef
PyObject
*
(
*
rv2py_converter
)
Py_PROTO
((
anything
)
);
typedef
PyObject
*
(
*
rv2py_converter
)
(
anything
);
/* Dummy routine for arguments that are output-only */
/* Dummy routine for arguments that are output-only */
...
...
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