1995-02-19 11:51:11 -04:00
|
|
|
/***********************************************************
|
1997-01-31 12:15:11 -04:00
|
|
|
Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
|
1995-02-19 11:51:11 -04:00
|
|
|
The Netherlands.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
|
|
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1994-09-16 07:54:21 -03:00
|
|
|
/* Macintosh Gestalt interface */
|
|
|
|
|
1997-01-30 11:48:07 -04:00
|
|
|
#include "Python.h"
|
2003-11-20 09:31:00 -04:00
|
|
|
#include "pymactoolbox.h"
|
1994-09-16 07:54:21 -03:00
|
|
|
|
2001-05-12 19:46:35 -03:00
|
|
|
#include <Carbon/Carbon.h>
|
1994-09-16 07:54:21 -03:00
|
|
|
|
1997-01-30 11:48:07 -04:00
|
|
|
static PyObject *
|
2001-09-04 19:29:31 -03:00
|
|
|
gestalt_gestalt(PyObject *self, PyObject *args)
|
1994-09-16 07:54:21 -03:00
|
|
|
{
|
|
|
|
OSErr iErr;
|
|
|
|
OSType selector;
|
|
|
|
long response;
|
2006-05-29 18:58:42 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "O&", PyMac_GetOSType, &selector))
|
1994-09-16 07:54:21 -03:00
|
|
|
return NULL;
|
|
|
|
iErr = Gestalt ( selector, &response );
|
1999-08-23 08:37:51 -03:00
|
|
|
if (iErr != 0)
|
|
|
|
return PyMac_Error(iErr);
|
1997-01-30 11:48:07 -04:00
|
|
|
return PyInt_FromLong(response);
|
1994-09-16 07:54:21 -03:00
|
|
|
}
|
|
|
|
|
1997-01-30 11:48:07 -04:00
|
|
|
static struct PyMethodDef gestalt_methods[] = {
|
2006-05-29 18:58:42 -03:00
|
|
|
{"gestalt", gestalt_gestalt, METH_VARARGS},
|
1994-09-16 07:54:21 -03:00
|
|
|
{NULL, NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2001-09-04 19:29:31 -03:00
|
|
|
initgestalt(void)
|
1994-09-16 07:54:21 -03:00
|
|
|
{
|
1997-01-30 11:48:07 -04:00
|
|
|
Py_InitModule("gestalt", gestalt_methods);
|
1994-09-16 07:54:21 -03:00
|
|
|
}
|