summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-08-13 00:20:49 +0000
committerwtchang%redhat.com <devnull@localhost>2005-08-13 00:20:49 +0000
commitaaac07ecc401bbe38b97e6963bad75a8f82c8a88 (patch)
tree7a68938af67d2d15b97d8f7362e9b9b79ba1518a
parent3b85bbee02afdeb10046154414f261da2aedbdae (diff)
downloadnspr-hg-aaac07ecc401bbe38b97e6963bad75a8f82c8a88.tar.gz
Bugzilla Bug 303345: added comments for obsolete XP_MAC only enum constants
and union members. r=joshmoz,sfraser.
-rw-r--r--pr/include/prlink.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pr/include/prlink.h b/pr/include/prlink.h
index 06fb1b35..b2eb5141 100644
--- a/pr/include/prlink.h
+++ b/pr/include/prlink.h
@@ -125,8 +125,8 @@ NSPR_API(PRLibrary*) PR_LoadLibrary(const char *name);
typedef enum PRLibSpecType {
PR_LibSpec_Pathname,
- PR_LibSpec_MacNamedFragment,
- PR_LibSpec_MacIndexedFragment
+ PR_LibSpec_MacNamedFragment, /* obsolete (for Mac OS Classic) */
+ PR_LibSpec_MacIndexedFragment /* obsolete (for Mac OS Classic) */
} PRLibSpecType;
struct FSSpec; /* Mac OS FSSpec */
@@ -141,13 +141,13 @@ typedef struct PRLibSpec {
struct {
const struct FSSpec *fsspec;
const char *name;
- } mac_named_fragment;
+ } mac_named_fragment; /* obsolete (for Mac OS Classic) */
/* if type is PR_LibSpec_MacIndexedFragment */
struct {
const struct FSSpec *fsspec;
PRUint32 index;
- } mac_indexed_fragment;
+ } mac_indexed_fragment; /* obsolete (for Mac OS Classic) */
} value;
} PRLibSpec;