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
5bdbabd2
Kaydet (Commit)
5bdbabd2
authored
Tem 24, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added more prototypes.
üst
1f9f2f4c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
macglue.h
Mac/Include/macglue.h
+1
-1
macmain.c
Mac/Python/macmain.c
+3
-0
macshlglue.c
Mac/Python/macshlglue.c
+6
-5
No files found.
Mac/Include/macglue.h
Dosyayı görüntüle @
5bdbabd2
...
...
@@ -40,7 +40,7 @@ typedef struct {
double
bg_yield
;
/* yield at most so long when in background */
}
PyMacSchedParams
;
char
*
PyMac_getscript
(
void
);
/* Get the default encoding for our 8bit character set */
#ifdef USE_GUSI1
void
PyMac_FixGUSIcd
(
void
);
/* Workaround for GUSI chdir() call */
extern
void
PyMac_SetGUSISpin
(
void
);
/* Install our private GUSI spin routine */
...
...
Mac/Python/macmain.c
Dosyayı görüntüle @
5bdbabd2
...
...
@@ -50,6 +50,9 @@ extern int ccommand(char ***);
#endif
#endif
#include <unistd.h>
#ifdef USE_MAC_SHARED_LIBRARY
extern
PyMac_AddLibResources
(
void
);
#endif
#define STARTUP "PythonStartup"
...
...
Mac/Python/macshlglue.c
Dosyayı görüntüle @
5bdbabd2
...
...
@@ -50,6 +50,12 @@ PERFORMANCE OF THIS SOFTWARE.
#include <Files.h>
#include <Resources.h>
/* Defined in the MSL runtime: */
extern
void
__initialize
(
void
);
/* Defined either in macglue.c or in a MPW library: */
extern
pascal
int
PLstrcmp
(
unsigned
char
*
,
unsigned
char
*
);
/*
** Variables passed from shared lib initialization to PyMac_AddLibResources.
*/
...
...
@@ -64,12 +70,7 @@ OSErr pascal
__initialize_with_resources
(
CFragInitBlockPtr
data
)
{
/* Call the MW runtime's initialization routine */
/* #ifdef __CFM68K__ */
#if 1
__initialize
();
#else
__sinit
();
#endif
if
(
data
==
nil
)
return
noErr
;
if
(
data
->
fragLocator
.
where
==
kDataForkCFragLocator
)
{
...
...
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