OLD | NEW |
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
4 * | 4 * |
5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
9 * | 9 * |
10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 , NPNVsupportsQuickDrawBool = 2000 | 442 , NPNVsupportsQuickDrawBool = 2000 |
443 #endif | 443 #endif |
444 , NPNVsupportsCoreGraphicsBool = 2001 | 444 , NPNVsupportsCoreGraphicsBool = 2001 |
445 , NPNVsupportsOpenGLBool = 2002 | 445 , NPNVsupportsOpenGLBool = 2002 |
446 , NPNVsupportsCoreAnimationBool = 2003 | 446 , NPNVsupportsCoreAnimationBool = 2003 |
447 , NPNVsupportsInvalidatingCoreAnimationBool = 2004 | 447 , NPNVsupportsInvalidatingCoreAnimationBool = 2004 |
448 #ifndef NP_NO_CARBON | 448 #ifndef NP_NO_CARBON |
449 , NPNVsupportsCarbonBool = 3000 /* TRUE if the browser supports the Carbon eve
nt model */ | 449 , NPNVsupportsCarbonBool = 3000 /* TRUE if the browser supports the Carbon eve
nt model */ |
450 #endif | 450 #endif |
451 , NPNVsupportsCocoaBool = 3001 /* TRUE if the browser supports the Cocoa event
model */ | 451 , NPNVsupportsCocoaBool = 3001 /* TRUE if the browser supports the Cocoa event
model */ |
| 452 , NPNVsupportsUpdatedCocoaTextInputBool = 3002 /* TRUE if the browser supports
the updated |
| 453 Cocoa text input specificati
on. */ |
452 #endif | 454 #endif |
453 #if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6) | 455 #if (MOZ_PLATFORM_MAEMO == 5) || (MOZ_PLATFORM_MAEMO == 6) |
454 , NPNVSupportsWindowlessLocal = 2002 | 456 , NPNVSupportsWindowlessLocal = 2002 |
455 #endif | 457 #endif |
456 } NPNVariable; | 458 } NPNVariable; |
457 | 459 |
458 typedef enum { | 460 typedef enum { |
459 NPNURLVCookie = 501, | 461 NPNURLVCookie = 501, |
460 NPNURLVProxy | 462 NPNURLVProxy |
461 } NPNURLVariable; | 463 } NPNURLVariable; |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 #ifdef __cplusplus | 912 #ifdef __cplusplus |
911 } /* end extern "C" */ | 913 } /* end extern "C" */ |
912 #endif | 914 #endif |
913 | 915 |
914 #endif /* RC_INVOKED */ | 916 #endif /* RC_INVOKED */ |
915 #if defined(__OS2__) | 917 #if defined(__OS2__) |
916 #pragma pack() | 918 #pragma pack() |
917 #endif | 919 #endif |
918 | 920 |
919 #endif /* npapi_h_ */ | 921 #endif /* npapi_h_ */ |
OLD | NEW |