summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/macspeechmodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-02-24 13:56:59 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-02-24 13:56:59 (GMT)
commit4a8c54e6d91549ae140970862d661dacf1112e31 (patch)
tree23703ecb8562e7301dd487ecb310bf4ad74cf802 /Mac/Modules/macspeechmodule.c
parent6a528149dbed46723b8fc48c7b7cd21f9a727dff (diff)
downloadcpython-4a8c54e6d91549ae140970862d661dacf1112e31.zip
cpython-4a8c54e6d91549ae140970862d661dacf1112e31.tar.gz
cpython-4a8c54e6d91549ae140970862d661dacf1112e31.tar.bz2
- Changed GestaltEqu.h to Gestalt.h
- Changed FragLoader.h to CodeFragments.h - Removed Desk.h - Regenerated bgen modules from new universal headers - Changed some of the s# in PyArg_ParseTuple to m# (unfortunately: this should have been a different commit)
Diffstat (limited to 'Mac/Modules/macspeechmodule.c')
-rw-r--r--Mac/Modules/macspeechmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Modules/macspeechmodule.c b/Mac/Modules/macspeechmodule.c
index 7d499d4..6bcc730 100644
--- a/Mac/Modules/macspeechmodule.c
+++ b/Mac/Modules/macspeechmodule.c
@@ -25,7 +25,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
-#include <GestaltEqu.h>
+#include <Gestalt.h>
#include "Speech.h"
#ifdef __MWERKS__
@@ -37,7 +37,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#endif /* __MWERKS__ */
#ifdef __powerc
-#include <FragLoad.h>
+#include <CodeFragments.h>
int lib_available;
#endif /* __powerc */
@@ -150,7 +150,7 @@ sc_SpeakText(self, args)
char *str;
int len;
- if (!PyArg_Parse(args, "s#", &str, &len))
+ if (!PyArg_Parse(args, "m#", &str, &len))
return NULL;
if ( self->curtext ) {
StopSpeech(self->chan);