web_pub/browser_plugin_api/inc/npapi.h
branchGCC_SURGE
changeset 82 1c386166cb87
parent 17 c8a366e56285
child 88 cb5ac135d1df
equal deleted inserted replaced
81:2a9e6180e70c 82:1c386166cb87
   432         {
   432         {
   433         
   433         
   434         }
   434         }
   435             
   435             
   436     NPN_GenericParam(const TDesC& aStrValue)
   436     NPN_GenericParam(const TDesC& aStrValue)
   437     :strValue(aStrValue)
   437     :strValue(&aStrValue)
   438         {
   438         {
   439         
   439         
   440         }
   440         }
   441         
   441         
   442     NPN_GenericParam(void*  aVoidValue)
   442     NPN_GenericParam(void*  aVoidValue)
   444         {
   444         {
   445         
   445         
   446         }
   446         }
   447     int intValue;
   447     int intValue;
   448     bool   boolValue;
   448     bool   boolValue;
   449     const TDesC& strValue;
   449     const TDesC* strValue;
   450     void*  voidValue;
   450     void*  voidValue;
   451 };
   451 };
   452 
   452 
   453 
   453 
   454 typedef struct NPN_GenericElement{          
   454 typedef struct NPN_GenericElement{