Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f2e58049
Commit
f2e58049
authored
Jul 31, 2000
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ANSIfied.
parent
7e8cdaaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Mac/Modules/calldll.c
Mac/Modules/calldll.c
+6
-6
No files found.
Mac/Modules/calldll.c
View file @
f2e58049
...
@@ -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