Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
b58f1c0c
Kaydet (Commit)
b58f1c0c
authored
Eki 08, 2001
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added declarations for PyMac_SetConsoleHandler, PyMan_DUmmyReadHandler
and PyMac_DummyWriteHandler.
üst
144d387c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
macglue.h
Mac/Include/macglue.h
+19
-0
No files found.
Mac/Include/macglue.h
Dosyayı görüntüle @
b58f1c0c
...
...
@@ -123,6 +123,25 @@ OSErr PyMac_init_process_location(void);
char
*
strdup
(
const
char
*
str
);
#endif
#ifdef USE_GUSI2
/* from pyGUSISIOUX.cp */
typedef
long
(
*
PyWriteHandler
)(
char
*
buffer
,
long
n
);
typedef
long
(
*
PyReadHandler
)(
char
*
buffer
,
long
n
);
/* Override routines that normally reads and writes to the
** SIOUX console window. Intended for embedding applications
** that want to forestall a Python console window ever showing up.
*/
void
PyMac_SetConsoleHandler
(
PyReadHandler
stdinH
,
PyWriteHandler
stdoutH
,
PyWriteHandler
stderrH
);
/* Courtesy console handlers that drop all output and return
** 0 on reads.
*/
long
PyMac_DummyReadHandler
(
char
*
,
long
);
long
PyMac_DummyWriteHandler
(
char
*
,
long
);
#endif
/* USE_GUSI2 */
#ifdef __cplusplus
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment