Bug 438331 - Remove WIN16 (support) code everywhere; (Av1) </xpcom/*>; r+sr=benjamin

This commit is contained in:
Serge Gautherie 2008-10-08 02:21:13 +02:00
parent 58c68f214a
commit 85a3458be2
4 changed files with 2 additions and 4 deletions

View File

@ -996,7 +996,6 @@ prtpool.h
prtrace.h
prtypes.h
prvrsion.h
prwin16.h
plbase64.h
plerror.h
plgetopt.h

View File

@ -87,7 +87,6 @@ dist/include/nspr/prtpool.h
dist/include/nspr/prtrace.h
dist/include/nspr/prtypes.h
dist/include/nspr/prvrsion.h
dist/include/nspr/prwin16.h
dist/include/nspr/plarenas.h
dist/include/nspr/plarena.h
dist/include/nspr/plhash.h

View File

@ -514,7 +514,7 @@ NS_IMPL_ISUPPORTS1(nsAppDirectoryEnumerator, nsISimpleEnumerator)
/* nsPathsDirectoryEnumerator and PATH_SEPARATOR
* are not used on MacOS/X. */
#if defined(XP_WIN) || defined(XP_OS2)/* Win32, Win16, and OS/2 */
#if defined(XP_WIN) || defined(XP_OS2) /* Win32 and OS/2 */
#define PATH_SEPARATOR ';'
#else /*if defined(XP_UNIX) || defined(XP_BEOS)*/
#define PATH_SEPARATOR ':'

View File

@ -129,7 +129,7 @@ interface nsIStreamBufferAccess : nsISupports
# if defined HAVE_LONG_LONG
# if PR_BYTES_PER_LONG == 8
# define ULL_(x) x ## UL
# elif (defined WIN32 || defined WIN16) && !defined __GNUC__
# elif defined WIN32 && !defined __GNUC__
# define ULL_(x) ((uint64) x ## i64)
# else
# define ULL_(x) x ## ULL