diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-07 22:07:26 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-07 22:07:26 (GMT) |
commit | e4d7b5e6266a989708f7337a29f2203db2f79c89 (patch) | |
tree | 04e2327d874f9ebf542f9c42e13757a85010261e | |
parent | 31e2d7354f2251de51fde14a338b73fe8e96e9b2 (diff) | |
download | cpython-e4d7b5e6266a989708f7337a29f2203db2f79c89.zip cpython-e4d7b5e6266a989708f7337a29f2203db2f79c89.tar.gz cpython-e4d7b5e6266a989708f7337a29f2203db2f79c89.tar.bz2 |
Changed for the new preference resource version.
-rw-r--r-- | Mac/Include/pythonresources.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Mac/Include/pythonresources.h b/Mac/Include/pythonresources.h index a696b86..3cd0b55 100644 --- a/Mac/Include/pythonresources.h +++ b/Mac/Include/pythonresources.h @@ -71,9 +71,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define OPT_KEEPNORMAL 8 #define OPT_KEEPERROR 9 #define OPT_CMDLINE 10 -#define OPT_OLDEXC 13 +#define OPT_TABWARN 13 #define OPT_NOSITE 14 -#define OPT_HELP 16 +#define OPT_HELP 15 +#define OPT_NONAVSERV 16 /* Dialog for 'No preferences directory' */ #define NOPREFDIR_ID BASE_ID+5 @@ -143,7 +144,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define POPT_KEEPERR 6 #endif -#define POPT_VERSION_CURRENT 4 /* Current version number */ +#define POPT_VERSION_CURRENT 5 /* Current version number */ #ifndef rez typedef struct PyMac_PrefRecord { @@ -157,8 +158,9 @@ typedef struct PyMac_PrefRecord { unsigned char keep_error; unsigned char nointopt; unsigned char noargs; - unsigned char oldexc; + unsigned char tabwarn; unsigned char nosite; + unsigned char nonavservice; } PyMac_PrefRecord; #endif |