1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
|
/***********************************************************
Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
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.
******************************************************************/
/* Macintosh OS-specific interface */
#include "Python.h"
#include "macglue.h"
#include "pythonresources.h"
#ifdef WITHOUT_FRAMEWORKS
#include <Windows.h>
#include <Files.h>
#include <LowMem.h>
#include <Sound.h>
#include <Events.h>
#else
#include <Carbon/Carbon.h>
#endif
static PyObject *MacOS_Error; /* Exception MacOS.Error */
#ifdef MPW
#define bufferIsSmall -607 /*error returns from Post and Accept */
#endif
static PyObject *ErrorObject;
/* ----------------------------------------------------- */
/* Declarations for objects of type Resource fork */
typedef struct {
PyObject_HEAD
short fRefNum;
int isclosed;
} rfobject;
staticforward PyTypeObject Rftype;
/* ---------------------------------------------------------------- */
static void
do_close(self)
rfobject *self;
{
if (self->isclosed ) return;
(void)FSClose(self->fRefNum);
self->isclosed = 1;
}
static char rf_read__doc__[] =
"Read data from resource fork"
;
static PyObject *
rf_read(self, args)
rfobject *self;
PyObject *args;
{
long n;
PyObject *v;
OSErr err;
if (self->isclosed) {
PyErr_SetString(PyExc_ValueError, "Operation on closed file");
return NULL;
}
if (!PyArg_ParseTuple(args, "l", &n))
return NULL;
v = PyString_FromStringAndSize((char *)NULL, n);
if (v == NULL)
return NULL;
err = FSRead(self->fRefNum, &n, PyString_AsString(v));
if (err && err != eofErr) {
PyMac_Error(err);
Py_DECREF(v);
return NULL;
}
_PyString_Resize(&v, n);
return v;
}
static char rf_write__doc__[] =
"Write to resource fork"
;
static PyObject *
rf_write(self, args)
rfobject *self;
PyObject *args;
{
char *buffer;
long size;
OSErr err;
if (self->isclosed) {
PyErr_SetString(PyExc_ValueError, "Operation on closed file");
return NULL;
}
if (!PyArg_ParseTuple(args, "s#", &buffer, &size))
return NULL;
err = FSWrite(self->fRefNum, &size, buffer);
if (err) {
PyMac_Error(err);
return NULL;
}
Py_INCREF(Py_None);
return Py_None;
}
static char rf_seek__doc__[] =
"Set file position"
;
static PyObject *
rf_seek(self, args)
rfobject *self;
PyObject *args;
{
long amount, pos;
int whence = SEEK_SET;
long eof;
OSErr err;
if (self->isclosed) {
PyErr_SetString(PyExc_ValueError, "Operation on closed file");
return NULL;
}
if (!PyArg_ParseTuple(args, "l|i", &amount, &whence))
return NULL;
if ( err = GetEOF(self->fRefNum, &eof))
goto ioerr;
switch (whence) {
case SEEK_CUR:
if (err = GetFPos(self->fRefNum, &pos))
goto ioerr;
break;
case SEEK_END:
pos = eof;
break;
case SEEK_SET:
pos = 0;
break;
default:
PyErr_BadArgument();
return NULL;
}
pos += amount;
/* Don't bother implementing seek past EOF */
if (pos > eof || pos < 0) {
PyErr_BadArgument();
return NULL;
}
if ( err = SetFPos(self->fRefNum, fsFromStart, pos) ) {
ioerr:
PyMac_Error(err);
return NULL;
}
Py_INCREF(Py_None);
return Py_None;
}
static char rf_tell__doc__[] =
"Get file position"
;
static PyObject *
rf_tell(self, args)
rfobject *self;
PyObject *args;
{
long where;
OSErr err;
if (self->isclosed) {
PyErr_SetString(PyExc_ValueError, "Operation on closed file");
return NULL;
}
if (!PyArg_ParseTuple(args, ""))
return NULL;
if ( err = GetFPos(self->fRefNum, &where) ) {
PyMac_Error(err);
return NULL;
}
return PyInt_FromLong(where);
}
static char rf_close__doc__[] =
"Close resource fork"
;
static PyObject *
rf_close(self, args)
rfobject *self;
PyObject *args;
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
do_close(self);
Py_INCREF(Py_None);
return Py_None;
}
static struct PyMethodDef rf_methods[] = {
{"read", rf_read, 1, rf_read__doc__},
{"write", rf_write, 1, rf_write__doc__},
{"seek", rf_seek, 1, rf_seek__doc__},
{"tell", rf_tell, 1, rf_tell__doc__},
{"close", rf_close, 1, rf_close__doc__},
{NULL, NULL} /* sentinel */
};
/* ---------- */
static rfobject *
newrfobject()
{
rfobject *self;
self = PyObject_NEW(rfobject, &Rftype);
if (self == NULL)
return NULL;
self->isclosed = 1;
return self;
}
static void
rf_dealloc(self)
rfobject *self;
{
do_close(self);
PyMem_DEL(self);
}
static PyObject *
rf_getattr(self, name)
rfobject *self;
char *name;
{
return Py_FindMethod(rf_methods, (PyObject *)self, name);
}
static char Rftype__doc__[] =
"Resource fork file object"
;
static PyTypeObject Rftype = {
PyObject_HEAD_INIT(&PyType_Type)
0, /*ob_size*/
"ResourceFork", /*tp_name*/
sizeof(rfobject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)rf_dealloc, /*tp_dealloc*/
(printfunc)0, /*tp_print*/
(getattrfunc)rf_getattr, /*tp_getattr*/
(setattrfunc)0, /*tp_setattr*/
(cmpfunc)0, /*tp_compare*/
(reprfunc)0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
(hashfunc)0, /*tp_hash*/
(ternaryfunc)0, /*tp_call*/
(reprfunc)0, /*tp_str*/
/* Space for future expansion */
0L,0L,0L,0L,
Rftype__doc__ /* Documentation string */
};
/* End of code for Resource fork objects */
/* -------------------------------------------------------- */
/*----------------------------------------------------------------------*/
/* Miscellaneous File System Operations */
static char getcrtp_doc[] = "Obsolete, use macfs module";
static PyObject *
MacOS_GetCreatorAndType(PyObject *self, PyObject *args)
{
FSSpec fss;
FInfo info;
PyObject *creator, *type, *res;
OSErr err;
if (!PyArg_ParseTuple(args, "O&", PyMac_GetFSSpec, &fss))
return NULL;
if ((err = FSpGetFInfo(&fss, &info)) != noErr)
return PyErr_Mac(MacOS_Error, err);
creator = PyString_FromStringAndSize((char *)&info.fdCreator, 4);
type = PyString_FromStringAndSize((char *)&info.fdType, 4);
res = Py_BuildValue("OO", creator, type);
Py_DECREF(creator);
Py_DECREF(type);
return res;
}
static char setcrtp_doc[] = "Obsolete, use macfs module";
static PyObject *
MacOS_SetCreatorAndType(PyObject *self, PyObject *args)
{
FSSpec fss;
ResType creator, type;
FInfo info;
OSErr err;
if (!PyArg_ParseTuple(args, "O&O&O&",
PyMac_GetFSSpec, &fss, PyMac_GetOSType, &creator, PyMac_GetOSType, &type))
return NULL;
if ((err = FSpGetFInfo(&fss, &info)) != noErr)
return PyErr_Mac(MacOS_Error, err);
info.fdCreator = creator;
info.fdType = type;
if ((err = FSpSetFInfo(&fss, &info)) != noErr)
return PyErr_Mac(MacOS_Error, err);
Py_INCREF(Py_None);
return Py_None;
}
#if TARGET_API_MAC_OS8
/*----------------------------------------------------------------------*/
/* STDWIN High Level Event interface */
#include <EPPC.h>
#include <Events.h>
static char accepthle_doc[] = "Get arguments of pending high-level event";
static PyObject *
MacOS_AcceptHighLevelEvent(self, args)
PyObject *self;
PyObject *args;
{
TargetID sender;
unsigned long refcon;
Ptr buf;
unsigned long len;
OSErr err;
PyObject *res;
buf = NULL;
len = 0;
err = AcceptHighLevelEvent(&sender, &refcon, buf, &len);
if (err == bufferIsSmall) {
buf = malloc(len);
if (buf == NULL)
return PyErr_NoMemory();
err = AcceptHighLevelEvent(&sender, &refcon, buf, &len);
if (err != noErr) {
free(buf);
return PyErr_Mac(MacOS_Error, (int)err);
}
}
else if (err != noErr)
return PyErr_Mac(MacOS_Error, (int)err);
res = Py_BuildValue("s#ls#",
(char *)&sender, (int)(sizeof sender), refcon, (char *)buf, (int)len);
free(buf);
return res;
}
#endif
#if !TARGET_API_MAC_OSX
static char schedparams_doc[] = "Set/return mainloop interrupt check flag, etc";
/*
** Set scheduler parameters
*/
static PyObject *
MacOS_SchedParams(PyObject *self, PyObject *args)
{
PyMacSchedParams old, new;
PyMac_GetSchedParams(&old);
new = old;
if (!PyArg_ParseTuple(args, "|iiidd", &new.check_interrupt, &new.process_events,
&new.besocial, &new.check_interval, &new.bg_yield))
return NULL;
PyMac_SetSchedParams(&new);
return Py_BuildValue("iiidd", old.check_interrupt, old.process_events,
old.besocial, old.check_interval, old.bg_yield);
}
static char appswitch_doc[] = "Obsolete, use SchedParams";
/* Obsolete, for backward compatability */
static PyObject *
MacOS_EnableAppswitch(PyObject *self, PyObject *args)
{
int new, old;
PyMacSchedParams schp;
if (!PyArg_ParseTuple(args, "i", &new))
return NULL;
PyMac_GetSchedParams(&schp);
if ( schp.process_events )
old = 1;
else if ( schp.check_interrupt )
old = 0;
else
old = -1;
if ( new > 0 ) {
schp.process_events = mDownMask|keyDownMask|osMask;
schp.check_interrupt = 1;
} else if ( new == 0 ) {
schp.process_events = 0;
schp.check_interrupt = 1;
} else {
schp.process_events = 0;
schp.check_interrupt = 0;
}
PyMac_SetSchedParams(&schp);
return Py_BuildValue("i", old);
}
static char setevh_doc[] = "Set python event handler to be called in mainloop";
static PyObject *
MacOS_SetEventHandler(self, args)
PyObject *self;
PyObject *args;
{
PyObject *evh = NULL;
if (!PyArg_ParseTuple(args, "|O", &evh))
return NULL;
if (evh == Py_None)
evh = NULL;
if ( evh && !PyCallable_Check(evh) ) {
PyErr_SetString(PyExc_ValueError, "SetEventHandler argument must be callable");
return NULL;
}
if ( !PyMac_SetEventHandler(evh) )
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
static char handleev_doc[] = "Pass event to other interested parties like sioux";
static PyObject *
MacOS_HandleEvent(PyObject *self, PyObject *args)
{
EventRecord ev;
if (!PyArg_ParseTuple(args, "O&", PyMac_GetEventRecord, &ev))
return NULL;
PyMac_HandleEventIntern(&ev);
Py_INCREF(Py_None);
return Py_None;
}
#endif /* !TARGET_API_MAC_OSX */
static char geterr_doc[] = "Convert OSErr number to string";
static PyObject *
MacOS_GetErrorString(PyObject *self, PyObject *args)
{
int errn;
if (!PyArg_ParseTuple(args, "i", &errn))
return NULL;
return Py_BuildValue("s", PyMac_StrError(errn));
}
static char splash_doc[] = "Open a splash-screen dialog by resource-id (0=close)";
static PyObject *
MacOS_splash(PyObject *self, PyObject *args)
{
int resid = -1;
static DialogPtr curdialog = NULL;
DialogPtr olddialog;
WindowRef theWindow;
CGrafPtr thePort;
#if 0
short xpos, ypos, width, height, swidth, sheight;
#endif
if (!PyArg_ParseTuple(args, "|i", &resid))
return NULL;
olddialog = curdialog;
curdialog = NULL;
if ( resid != -1 ) {
curdialog = GetNewDialog(resid, NULL, (WindowPtr)-1);
if ( curdialog ) {
theWindow = GetDialogWindow(curdialog);
thePort = GetWindowPort(theWindow);
#if 0
width = thePort->portRect.right - thePort->portRect.left;
height = thePort->portRect.bottom - thePort->portRect.top;
swidth = qd.screenBits.bounds.right - qd.screenBits.bounds.left;
sheight = qd.screenBits.bounds.bottom - qd.screenBits.bounds.top - LMGetMBarHeight();
xpos = (swidth-width)/2;
ypos = (sheight-height)/5 + LMGetMBarHeight();
MoveWindow(theWindow, xpos, ypos, 0);
ShowWindow(theWindow);
#endif
DrawDialog(curdialog);
}
}
if (olddialog)
DisposeDialog(olddialog);
Py_INCREF(Py_None);
return Py_None;
}
static char DebugStr_doc[] = "Switch to low-level debugger with a message";
static PyObject *
MacOS_DebugStr(PyObject *self, PyObject *args)
{
Str255 message;
PyObject *object = 0;
if (!PyArg_ParseTuple(args, "O&|O", PyMac_GetStr255, message, &object))
return NULL;
DebugStr(message);
Py_INCREF(Py_None);
return Py_None;
}
static char SysBeep_doc[] = "BEEEEEP!!!";
static PyObject *
MacOS_SysBeep(PyObject *self, PyObject *args)
{
int duration = 6;
if (!PyArg_ParseTuple(args, "|i", &duration))
return NULL;
SysBeep(duration);
Py_INCREF(Py_None);
return Py_None;
}
static char GetTicks_doc[] = "Return number of ticks since bootup";
static PyObject *
MacOS_GetTicks(PyObject *self, PyObject *args)
{
return Py_BuildValue("i", (int)TickCount());
}
static char openrf_doc[] = "Open resource fork of a file";
static PyObject *
MacOS_openrf(PyObject *self, PyObject *args)
{
OSErr err;
char *mode = "r";
FSSpec fss;
SignedByte permission = 1;
rfobject *fp;
if (!PyArg_ParseTuple(args, "O&|s", PyMac_GetFSSpec, &fss, &mode))
return NULL;
while (*mode) {
switch (*mode++) {
case '*': break;
case 'r': permission = 1; break;
case 'w': permission = 2; break;
case 'b': break;
default:
PyErr_BadArgument();
return NULL;
}
}
if ( (fp = newrfobject()) == NULL )
return NULL;
err = HOpenRF(fss.vRefNum, fss.parID, fss.name, permission, &fp->fRefNum);
if ( err == fnfErr ) {
/* In stead of doing complicated things here to get creator/type
** correct we let the standard i/o library handle it
*/
FILE *tfp;
char pathname[257];
if ( err=PyMac_GetFullPath(&fss, pathname) ) {
PyMac_Error(err);
Py_DECREF(fp);
return NULL;
}
if ( (tfp = fopen(pathname, "w")) == NULL ) {
PyMac_Error(fnfErr); /* What else... */
Py_DECREF(fp);
return NULL;
}
fclose(tfp);
err = HOpenRF(fss.vRefNum, fss.parID, fss.name, permission, &fp->fRefNum);
}
if ( err ) {
Py_DECREF(fp);
PyMac_Error(err);
return NULL;
}
fp->isclosed = 0;
return (PyObject *)fp;
}
#if !TARGET_API_MAC_OSX
static char FreeMem_doc[] = "Return the total amount of free space in the heap";
static PyObject *
MacOS_FreeMem(PyObject *self, PyObject *args)
{
long rv;
if (!PyArg_ParseTuple(args, ""))
return NULL;
rv = FreeMem();
return Py_BuildValue("l", rv);
}
static char MaxBlock_doc[] = "Return the largest contiguous block of free space in the heap";
static PyObject *
MacOS_MaxBlock(PyObject *self, PyObject *args)
{
long rv;
if (!PyArg_ParseTuple(args, ""))
return NULL;
rv = MaxBlock();
return Py_BuildValue("l", rv);
}
static char CompactMem_doc[] = "(wanted size)->actual largest block after compacting";
static PyObject *
MacOS_CompactMem(PyObject *self, PyObject *args)
{
long value;
long rv;
if (!PyArg_ParseTuple(args, "l", &value))
return NULL;
rv = CompactMem(value);
return Py_BuildValue("l", rv);
}
static char KeepConsole_doc[] = "(flag) Keep console open 0:never, 1:on output 2:on error, 3:always";
static PyObject *
MacOS_KeepConsole(PyObject *self, PyObject *args)
{
int value;
if (!PyArg_ParseTuple(args, "i", &value))
return NULL;
PyMac_options.keep_console = value;
Py_INCREF(Py_None);
return Py_None;
}
static char OutputSeen_doc[] = "Call to reset the 'unseen output' flag for the keep-console-open option";
static PyObject *
MacOS_OutputSeen(PyObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
PyMac_OutputSeen();
Py_INCREF(Py_None);
return Py_None;
}
#endif /* !TARGET_API_MAC_OSX */
static PyMethodDef MacOS_Methods[] = {
#if TARGET_API_MAC_OS8
{"AcceptHighLevelEvent", MacOS_AcceptHighLevelEvent, 1, accepthle_doc},
#endif
{"GetCreatorAndType", MacOS_GetCreatorAndType, 1, getcrtp_doc},
{"SetCreatorAndType", MacOS_SetCreatorAndType, 1, setcrtp_doc},
#if !TARGET_API_MAC_OSX
{"SchedParams", MacOS_SchedParams, 1, schedparams_doc},
{"EnableAppswitch", MacOS_EnableAppswitch, 1, appswitch_doc},
{"SetEventHandler", MacOS_SetEventHandler, 1, setevh_doc},
{"HandleEvent", MacOS_HandleEvent, 1, handleev_doc},
#endif
{"GetErrorString", MacOS_GetErrorString, 1, geterr_doc},
{"openrf", MacOS_openrf, 1, openrf_doc},
{"splash", MacOS_splash, 1, splash_doc},
{"DebugStr", MacOS_DebugStr, 1, DebugStr_doc},
{"GetTicks", MacOS_GetTicks, 1, GetTicks_doc},
{"SysBeep", MacOS_SysBeep, 1, SysBeep_doc},
#if !TARGET_API_MAC_OSX
{"FreeMem", MacOS_FreeMem, 1, FreeMem_doc},
{"MaxBlock", MacOS_MaxBlock, 1, MaxBlock_doc},
{"CompactMem", MacOS_CompactMem, 1, CompactMem_doc},
{"KeepConsole", MacOS_KeepConsole, 1, KeepConsole_doc},
{"OutputSeen", MacOS_OutputSeen, 1, OutputSeen_doc},
#endif
{NULL, NULL} /* Sentinel */
};
void
initMacOS()
{
PyObject *m, *d;
m = Py_InitModule("MacOS", MacOS_Methods);
d = PyModule_GetDict(m);
/* Initialize MacOS.Error exception */
MacOS_Error = PyMac_GetOSErrException();
if (MacOS_Error == NULL || PyDict_SetItemString(d, "Error", MacOS_Error) != 0)
return;
Rftype.ob_type = &PyType_Type;
Py_INCREF(&Rftype);
if (PyDict_SetItemString(d, "ResourceForkType", (PyObject *)&Rftype) != 0)
return;
/*
** This is a hack: the following constant added to the id() of a string
** object gives you the address of the data. Unfortunately, it is needed for
** some of the image and sound processing interfaces on the mac:-(
*/
{
PyStringObject *p = 0;
long off = (long)&(p->ob_sval[0]);
if( PyDict_SetItemString(d, "string_id_to_buffer", Py_BuildValue("i", off)) != 0)
return;
}
if (PyDict_SetItemString(d, "AppearanceCompliant",
Py_BuildValue("i", PyMac_AppearanceCompliant)) != 0)
return;
#if TARGET_API_MAC_OSX
#define PY_RUNTIMEMODEL "macho"
#elif TARGET_API_MAC_OS8
#define PY_RUNTIMEMODEL "ppc"
#elif TARGET_API_MAC_CARBON
#define PY_RUNTIMEMODEL "carbon"
#else
#error "None of the TARGET_API_MAC_XXX I know about is set"
#endif
if (PyDict_SetItemString(d, "runtimemodel",
Py_BuildValue("s", PY_RUNTIMEMODEL)) != 0)
return;
}
|