diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-09-10 12:32:47 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-09-10 12:32:47 (GMT) |
commit | 47ec1419639b1aa1817860b301c81868284336d1 (patch) | |
tree | 450b5f361f53d0146425411f1d2f2a7f00d9b0f9 /Mac/Include/getapplbycreator.h | |
parent | 2575022aeff348596c34e0caa028ea8c166cbff6 (diff) | |
download | cpython-47ec1419639b1aa1817860b301c81868284336d1.zip cpython-47ec1419639b1aa1817860b301c81868284336d1.tar.gz cpython-47ec1419639b1aa1817860b301c81868284336d1.tar.bz2 |
Added include guards and C++ extern "C" {} constructs. Partial fix for #607253.
Bugfix candidate.
Diffstat (limited to 'Mac/Include/getapplbycreator.h')
-rw-r--r-- | Mac/Include/getapplbycreator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Mac/Include/getapplbycreator.h b/Mac/Include/getapplbycreator.h index 62e5930..535be16 100644 --- a/Mac/Include/getapplbycreator.h +++ b/Mac/Include/getapplbycreator.h @@ -21,6 +21,8 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ +#ifndef Py_GETAPPLBYCREATOR_H +#define Py_GETALLPBYCREATOR_H #ifdef WITHOUT_FRAMEWORKS #include <Types.h> @@ -29,4 +31,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <Carbon/Carbon.h> #endif +#ifdef __cplusplus + extern "C" { +#endif + extern OSErr FindApplicationFromCreator(OSType, FSSpecPtr); + +#ifdef __cplusplus +} +#endif +#endif |