Kaydet (Commit) c9226b84 authored tarafından Michael Stahl's avatar Michael Stahl

np_sdk: fix -Wundef

Change-Id: Id806e33457ff0c828f55db1fe5e5444e208d2a1e
üst 2b4ee9bc
...@@ -384,7 +384,7 @@ typedef enum { ...@@ -384,7 +384,7 @@ typedef enum {
, NPPVpluginCoreAnimationLayer = 1003 , NPPVpluginCoreAnimationLayer = 1003
#endif #endif
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6) #if defined(MOZ_PLATFORM_MAEMO) && ((MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6))
, NPPVpluginWindowlessLocalBool = 2002 , NPPVpluginWindowlessLocalBool = 2002
#endif #endif
} NPPVariable; } NPPVariable;
...@@ -435,7 +435,7 @@ typedef enum { ...@@ -435,7 +435,7 @@ typedef enum {
, NPNVsupportsUpdatedCocoaTextInputBool = 3002 /* TRUE if the browser supports the updated , NPNVsupportsUpdatedCocoaTextInputBool = 3002 /* TRUE if the browser supports the updated
Cocoa text input specification. */ Cocoa text input specification. */
#endif #endif
#if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6) #if defined(MOZ_PLATFORM_MAEMO) && ((MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6))
, NPNVSupportsWindowlessLocal = 2002 , NPNVSupportsWindowlessLocal = 2002
#endif #endif
} NPNVariable; } NPNVariable;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment