diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-14 22:37:27 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-14 22:37:27 (GMT) |
commit | 74a1e63a89cdaad288260600cf77e3a20811f49b (patch) | |
tree | fcac57d67ef4a81ecfb8ae462dc3d254e9cf46be /Mac/Modules/res | |
parent | 2d391f2f397d66e2ac3cadc0b3c3b008a57094bb (diff) | |
download | cpython-74a1e63a89cdaad288260600cf77e3a20811f49b.zip cpython-74a1e63a89cdaad288260600cf77e3a20811f49b.tar.gz cpython-74a1e63a89cdaad288260600cf77e3a20811f49b.tar.bz2 |
Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.
Diffstat (limited to 'Mac/Modules/res')
-rw-r--r-- | Mac/Modules/res/Resmodule.c | 24 | ||||
-rw-r--r-- | Mac/Modules/res/resscan.py | 2 |
2 files changed, 13 insertions, 13 deletions
diff --git a/Mac/Modules/res/Resmodule.c b/Mac/Modules/res/Resmodule.c index 95a82e2..56534d6 100644 --- a/Mac/Modules/res/Resmodule.c +++ b/Mac/Modules/res/Resmodule.c @@ -275,7 +275,7 @@ static PyObject *ResObj_GetMaxResourceSize(_self, _args) return _res; } -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *ResObj_RsrcMapEntry(_self, _args) ResourceObject *_self; @@ -483,7 +483,7 @@ static PyMethodDef ResObj_methods[] = { {"GetMaxResourceSize", (PyCFunction)ResObj_GetMaxResourceSize, 1, "() -> (long _rv)"}, -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"RsrcMapEntry", (PyCFunction)ResObj_RsrcMapEntry, 1, "() -> (long _rv)"}, #endif @@ -592,7 +592,7 @@ PyTypeObject Resource_Type = { /* -------------------- End object type Resource -------------------- */ -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *Res_InitResources(_self, _args) PyObject *_self; @@ -613,7 +613,7 @@ static PyObject *Res_InitResources(_self, _args) } #endif -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *Res_RsrcZoneInit(_self, _args) PyObject *_self; @@ -688,7 +688,7 @@ static PyObject *Res_CurResFile(_self, _args) return _res; } -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *Res_CreateResFile(_self, _args) PyObject *_self; @@ -710,7 +710,7 @@ static PyObject *Res_CreateResFile(_self, _args) } #endif -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *Res_OpenResFile(_self, _args) PyObject *_self; @@ -1173,7 +1173,7 @@ static PyObject *Res_OpenRFPerm(_self, _args) return _res; } -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON static PyObject *Res_RGetResource(_self, _args) PyObject *_self; @@ -1357,12 +1357,12 @@ static PyObject *Res_Handle(_self, _args) static PyMethodDef Res_methods[] = { -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"InitResources", (PyCFunction)Res_InitResources, 1, "() -> (short _rv)"}, #endif -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"RsrcZoneInit", (PyCFunction)Res_RsrcZoneInit, 1, "() -> None"}, #endif @@ -1373,12 +1373,12 @@ static PyMethodDef Res_methods[] = { {"CurResFile", (PyCFunction)Res_CurResFile, 1, "() -> (short _rv)"}, -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"CreateResFile", (PyCFunction)Res_CreateResFile, 1, "(Str255 fileName) -> None"}, #endif -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"OpenResFile", (PyCFunction)Res_OpenResFile, 1, "(Str255 fileName) -> (short _rv)"}, #endif @@ -1425,7 +1425,7 @@ static PyMethodDef Res_methods[] = { {"OpenRFPerm", (PyCFunction)Res_OpenRFPerm, 1, "(Str255 fileName, short vRefNum, SignedByte permission) -> (short _rv)"}, -#ifndef TARGET_API_MAC_CARBON +#if !TARGET_API_MAC_CARBON {"RGetResource", (PyCFunction)Res_RGetResource, 1, "(ResType theType, short theID) -> (Handle _rv)"}, #endif diff --git a/Mac/Modules/res/resscan.py b/Mac/Modules/res/resscan.py index 18499e3..b417cd7 100644 --- a/Mac/Modules/res/resscan.py +++ b/Mac/Modules/res/resscan.py @@ -50,7 +50,7 @@ class ResourcesScanner(Scanner): def makegreylist(self): return [ - ('#ifndef TARGET_API_MAC_CARBON', [ + ('#if !TARGET_API_MAC_CARBON', [ 'RGetResource', 'OpenResFile', 'CreateResFile', |