diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-09 00:20:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-09 00:20:36 (GMT) |
commit | ea9cb5aebf38741871ad4f28971dcd23ddd77ad2 (patch) | |
tree | 0e891c50f3406cf846cfdad4757464dd087e6592 /Include/bufferobject.h | |
parent | 5eb6d4e3bf094c33ae66432eeae3668e220dd28d (diff) | |
download | cpython-ea9cb5aebf38741871ad4f28971dcd23ddd77ad2.zip cpython-ea9cb5aebf38741871ad4f28971dcd23ddd77ad2.tar.gz cpython-ea9cb5aebf38741871ad4f28971dcd23ddd77ad2.tar.bz2 |
ANSI-fication and Py_PROTO extermination.
Diffstat (limited to 'Include/bufferobject.h')
-rw-r--r-- | Include/bufferobject.h | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/Include/bufferobject.h b/Include/bufferobject.h index da978c2..5a205f3 100644 --- a/Include/bufferobject.h +++ b/Include/bufferobject.h @@ -1,9 +1,3 @@ -#ifndef Py_BUFFEROBJECT_H -#define Py_BUFFEROBJECT_H -#ifdef __cplusplus -extern "C" { -#endif - /*********************************************************** Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. @@ -18,6 +12,12 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. /* Note: the object's structure is private */ +#ifndef Py_BUFFEROBJECT_H +#define Py_BUFFEROBJECT_H +#ifdef __cplusplus +extern "C" { +#endif + extern DL_IMPORT(PyTypeObject) PyBuffer_Type; @@ -25,16 +25,18 @@ extern DL_IMPORT(PyTypeObject) PyBuffer_Type; #define Py_END_OF_BUFFER (-1) -extern DL_IMPORT(PyObject *) PyBuffer_FromObject Py_PROTO((PyObject *base, int offset, int size)); -extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteObject Py_PROTO((PyObject *base, int offset, int size)); +extern DL_IMPORT(PyObject *) PyBuffer_FromObject(PyObject *base, + int offset, int size); +extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteObject(PyObject *base, + int offset, + int size); -extern DL_IMPORT(PyObject *) PyBuffer_FromMemory Py_PROTO((void *ptr, int size)); -extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteMemory Py_PROTO((void *ptr, int size)); +extern DL_IMPORT(PyObject *) PyBuffer_FromMemory(void *ptr, int size); +extern DL_IMPORT(PyObject *) PyBuffer_FromReadWriteMemory(void *ptr, int size); -extern DL_IMPORT(PyObject *) PyBuffer_New Py_PROTO((int size)); +extern DL_IMPORT(PyObject *) PyBuffer_New(int size); #ifdef __cplusplus } #endif #endif /* !Py_BUFFEROBJECT_H */ - |