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
6fc5aecd
Kaydet (Commit)
6fc5aecd
authored
Şub 19, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ported back to Think C
üst
9784295b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
Sndmodule.c
Mac/Modules/snd/Sndmodule.c
+1
-1
sndsupport.py
Mac/Modules/snd/sndsupport.py
+1
-1
macgetargv.c
Mac/Python/macgetargv.c
+8
-1
No files found.
Mac/Modules/snd/Sndmodule.c
Dosyayı görüntüle @
6fc5aecd
...
...
@@ -36,7 +36,7 @@ extern PyObject *WinObj_WhichWindow(WindowPtr);
#ifndef HAVE_UNIVERSAL_HEADERS
#define SndCallBackUPP ProcPtr
#define NewSndCallBackProc(x) (
x
)
#define NewSndCallBackProc(x) (
(SndCallBackProcPtr)(x)
)
#define SndListHandle Handle
#endif
...
...
Mac/Modules/snd/sndsupport.py
Dosyayı görüntüle @
6fc5aecd
...
...
@@ -21,7 +21,7 @@ includestuff = includestuff + """
#ifndef HAVE_UNIVERSAL_HEADERS
#define SndCallBackUPP ProcPtr
#define NewSndCallBackProc(x) (
x
)
#define NewSndCallBackProc(x) (
(SndCallBackProcPtr)(x)
)
#define SndListHandle Handle
#endif
"""
...
...
Mac/Python/macgetargv.c
Dosyayı görüntüle @
6fc5aecd
...
...
@@ -41,6 +41,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <AEObjects.h>
#include <Desk.h>
#include <Fonts.h>
#include <TextEdit.h>
#include <Menus.h>
#include <Dialogs.h>
#include <Windows.h>
#ifdef GENERATINGCFM
/* Defined to 0 or 1 in Universal headers */
#define HAVE_UNIVERSAL_HEADERS
...
...
@@ -147,7 +151,6 @@ get_application_name()
{
static
char
appname
[
256
];
FSSpec
appspec
;
long
size
;
if
(
current_process_location
(
&
appspec
))
return
NULL
;
...
...
@@ -282,6 +285,9 @@ event_loop()
static
void
init_mac_world
()
{
#ifdef THINK_C
printf
(
"
\n
"
);
#else
MaxApplZone
();
InitGraf
(
&
qd
.
thePort
);
InitFonts
();
...
...
@@ -290,6 +296,7 @@ init_mac_world()
InitDialogs
((
long
)
0
);
InitMenus
();
InitCursor
();
#endif
}
/* Get the argv vector, return argc */
...
...
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