~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/include/prlink.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
/*
108
108
** Each operating system has its preferred way of specifying
109
109
** a file in the file system.  Most operating systems use
110
 
** a pathname.  Mac OS, on the other hand, uses the FSSpec
 
110
** a pathname.  Mac OS Classic, on the other hand, uses the FSSpec
111
111
** structure to specify a file. PRLibSpec allows NSPR clients
112
112
** to use the type of file specification that is most efficient
113
113
** for a particular platform.
114
114
**
115
 
** On some operating systems such as Mac OS, a shared library may
116
 
** contain code fragments that can be individually loaded.
 
115
** On some operating systems such as Mac OS Classic, a shared library
 
116
** may contain code fragments that can be individually loaded.
117
117
** PRLibSpec also allows NSPR clients to identify a code fragment
118
118
** in a library, if code fragments are supported by the OS.
119
119
** A code fragment can be specified by name or by an integer index.
130
130
    PR_LibSpec_PathnameU           /* supported only on Win32 */ 
131
131
} PRLibSpecType;
132
132
 
133
 
struct FSSpec; /* Mac OS FSSpec */
 
133
struct FSSpec; /* Mac OS Classic FSSpec */
134
134
 
135
135
typedef struct PRLibSpec {
136
136
    PRLibSpecType type;