Kaydet (Commit) 043732e9 authored tarafından Jack Jansen's avatar Jack Jansen

Enable FSpResourceFileAlreadyOpen only for Carbon. This is not strictly correct:…

Enable FSpResourceFileAlreadyOpen only for Carbon. This is not strictly correct: OS9 InterfaceLib has it, but enabling it will make Python refuse to run on 8.6 and earlier.
üst cfef0096
......@@ -1353,6 +1353,8 @@ static PyObject *Res_DetachResourceFile(_self, _args)
}
#endif
#if TARGET_API_MAC_CARBON
static PyObject *Res_FSpResourceFileAlreadyOpen(_self, _args)
PyObject *_self;
PyObject *_args;
......@@ -1378,6 +1380,7 @@ static PyObject *Res_FSpResourceFileAlreadyOpen(_self, _args)
refNum);
return _res;
}
#endif
#if TARGET_API_MAC_CARBON
......@@ -1600,8 +1603,11 @@ static PyMethodDef Res_methods[] = {
{"DetachResourceFile", (PyCFunction)Res_DetachResourceFile, 1,
"(SInt16 refNum) -> (OSErr _rv)"},
#endif
#if TARGET_API_MAC_CARBON
{"FSpResourceFileAlreadyOpen", (PyCFunction)Res_FSpResourceFileAlreadyOpen, 1,
"(FSSpec resourceFile) -> (Boolean _rv, Boolean inChain, SInt16 refNum)"},
#endif
#if TARGET_API_MAC_CARBON
{"FSpOpenOrphanResFile", (PyCFunction)Res_FSpOpenOrphanResFile, 1,
......
......@@ -63,6 +63,7 @@ class ResourcesScanner(Scanner):
'FSpOpenOrphanResFile',
'DetachResourceFile',
'InsertResourceFile',
'FSpResourceFileAlreadyOpen',
])]
def makerepairinstructions(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment