Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
117dbdf4
Commit
117dbdf4
authored
Apr 22, 2002
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added an optional file with MacErrors.h extensions: IC errors aren't in there.
Bugfix candidate.
parent
44c4c6db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
Mac/scripts/mkestrres-macerrors.h
Mac/scripts/mkestrres-macerrors.h
+13
-0
Mac/scripts/mkestrres.py
Mac/scripts/mkestrres.py
+6
-0
No files found.
Mac/scripts/mkestrres-macerrors.h
0 → 100755
View file @
117dbdf4
/* Errors from InternetConfig.h */
icPrefNotFoundErr
=
-
666
,
/* Internet preference not found */
icPermErr
=
-
667
,
/* cannot set preference */
icPrefDataErr
=
-
668
,
/* problem with preference data */
icInternalErr
=
-
669
,
/* Internet Config internal error */
icTruncatedErr
=
-
670
,
/* more data was present than was returned */
icNoMoreWritersErr
=
-
671
,
/* you cannot begin a write session because someone else is already doing it */
icNothingToOverrideErr
=
-
672
,
/* no component for the override component to capture */
icNoURLErr
=
-
673
,
/* no URL found */
icConfigNotFoundErr
=
-
674
,
/* no internet configuration was found */
icConfigInappropriateErr
=
-
675
,
/* incorrect manufacturer code */
icProfileNotFoundErr
=
-
676
,
/* profile not found */
icTooManyProfilesErr
=
-
677
/* too many profiles in database */
Mac/scripts/mkestrres.py
View file @
117dbdf4
...
...
@@ -123,6 +123,12 @@ def main():
parse_errors_h
(
fp
,
dict
)
fp
.
close
()
fss
,
ok
=
macfs
.
PromptGetFile
(
"Where is mkestrres-MacErrors.h?"
)
if
not
ok
:
return
fp
=
open
(
fss
.
as_pathname
())
parse_errors_h
(
fp
,
dict
)
fp
.
close
()
if
not
dict
:
return
...
...
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