add back #if 0

git-svn-id: svn://10.0.0.236/branches/RemoveOldDefines_BRANCH@10801 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cyeh%netscape.com
1998-09-23 17:23:04 +00:00
parent 84e5e238ec
commit d7df8af487
2 changed files with 16 additions and 0 deletions

View File

@@ -805,6 +805,11 @@ void FE_UnloadPlugin(void* pluginType, struct _np_handle* handle)
if (handle->userPlugin) {
nsrefcnt cnt = handle->userPlugin->Release();
PR_ASSERT(cnt == 0);
#if 0 // XXX later...
// remove the plugin directory if successful
JVM_RemoveFromClassPathRecursively(csPluginDir);
#endif
}
else {
// the NP_Shutdown entry point was misnamed as NP_PluginShutdown, early

View File

@@ -12,6 +12,17 @@
#include "prlong.h"
typedef PRIntn intN;
typedef PRUintn uintN;
/* Following are already available in compatibility mode of NSPR 2.0 */
#if 0
typedef PRInt64 int64;
typedef PRInt32 int32;
typedef PRInt16 int16;
typedef PRInt8 int8;
typedef uint64 uint64;
typedef uint32 uint32;
typedef uint16 uint16;
typedef uint8 uint8;
#endif
typedef PRUword pruword;
typedef PRWord prword;