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
f5c20575
Kaydet (Commit)
f5c20575
authored
Ock 30, 1997
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Renamed
üst
22023f4b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
11 deletions
+10
-11
ctbmodule.c
Mac/Modules/ctbmodule.c
+0
-0
gestaltmodule.c
Mac/Modules/gestaltmodule.c
+10
-11
macfsmodule.c
Mac/Modules/macfsmodule.c
+0
-0
macmodule.c
Mac/Modules/macmodule.c
+0
-0
macspeechmodule.c
Mac/Modules/macspeechmodule.c
+0
-0
No files found.
Mac/Modules/ctbmodule.c
Dosyayı görüntüle @
f5c20575
This diff is collapsed.
Click to expand it.
Mac/Modules/gestaltmodule.c
Dosyayı görüntüle @
f5c20575
...
...
@@ -24,26 +24,25 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Macintosh Gestalt interface */
#include "allobjects.h"
#include "modsupport.h"
#include "Python.h"
#include <Types.h>
#include <GestaltEqu.h>
static
o
bject
*
static
PyO
bject
*
gestalt_gestalt
(
self
,
args
)
o
bject
*
self
;
o
bject
*
args
;
PyO
bject
*
self
;
PyO
bject
*
args
;
{
OSErr
iErr
;
char
*
str
;
int
size
;
OSType
selector
;
long
response
;
if
(
!
getargs
(
args
,
"s#"
,
&
str
,
&
size
))
if
(
!
PyArg_Parse
(
args
,
"s#"
,
&
str
,
&
size
))
return
NULL
;
if
(
size
!=
4
)
{
err_setstr
(
TypeError
,
"gestalt arg must be 4-char string"
);
PyErr_SetString
(
PyExc_
TypeError
,
"gestalt arg must be 4-char string"
);
return
NULL
;
}
selector
=
*
(
OSType
*
)
str
;
...
...
@@ -51,13 +50,13 @@ gestalt_gestalt(self, args)
if
(
iErr
!=
0
)
{
char
buf
[
100
];
sprintf
(
buf
,
"Gestalt error code %d"
,
iErr
);
err_setstr
(
RuntimeError
,
buf
);
PyErr_SetString
(
PyExc_
RuntimeError
,
buf
);
return
NULL
;
}
return
newintobject
(
response
);
return
PyInt_FromLong
(
response
);
}
static
struct
methodlist
gestalt_methods
[]
=
{
static
struct
PyMethodDef
gestalt_methods
[]
=
{
{
"gestalt"
,
gestalt_gestalt
},
{
NULL
,
NULL
}
/* Sentinel */
};
...
...
@@ -65,5 +64,5 @@ static struct methodlist gestalt_methods[] = {
void
initgestalt
()
{
initm
odule
(
"gestalt"
,
gestalt_methods
);
Py_InitM
odule
(
"gestalt"
,
gestalt_methods
);
}
Mac/Modules/macfsmodule.c
Dosyayı görüntüle @
f5c20575
This diff is collapsed.
Click to expand it.
Mac/Modules/macmodule.c
Dosyayı görüntüle @
f5c20575
This diff is collapsed.
Click to expand it.
Mac/Modules/macspeechmodule.c
Dosyayı görüntüle @
f5c20575
This diff is collapsed.
Click to expand it.
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