harvester/harvesterserver/inc/cblacklistdb.h
changeset 9 d575fd691cf9
parent 7 a5fbfefd615f
equal deleted inserted replaced
7:a5fbfefd615f 9:d575fd691cf9
    96     * Leaves in case of errors.
    96     * Leaves in case of errors.
    97     */
    97     */
    98 	TBool FindL(TInt32 aPluginUid);
    98 	TBool FindL(TInt32 aPluginUid);
    99 	
    99 	
   100 	/*
   100 	/*
   101      * @description Adds the given uid of a plugin to the unloadlist table.
   101      * @description Adds the given uid of a plugin to the dontloadlist table.
   102      * @param aPluginUid Uid of the plugin
   102      * @param aPluginUid Uid of the plugin
   103      * @return sysmbian error code
   103      * @return symbian error code
   104      * Leaves in case of errors.
   104      * Leaves in case of errors.
   105      */  
   105      */  
   106 	TInt AddtoUnloadListL( TInt32 aPluginUid );
   106 	TInt AddtoDontloadListL( TInt32 aPluginUid );
   107     
   107     
   108 	/*
   108 	/*
   109      * @description remove the given uid of a plugin to the unloadlist table.
   109      * @description remove the given uid of a plugin to the dontloadlist table.
   110      * @param aPluginUid Uid of the plugin
   110      * @param aPluginUid Uid of the plugin
   111      * Leaves in case of errors.
   111      * Leaves in case of errors.
   112      */  
   112      */  
   113     void RemoveFromUnloadListL( TInt32 aPluginUid );
   113     void RemoveFromDontloadListL( TInt32 aPluginUid );
   114     
   114     
   115     /*
   115     /*
   116      * @description Find the given uid of a plugin to the unloadlist table.
   116      * @description Find the given uid of a plugin to the dontloadlist table.
   117      * @param aPluginUid Uid of the plugin
   117      * @param aPluginUid Uid of the plugin
   118      * @return ETrue if exists else returns EFalse
   118      * @return ETrue if exists else returns EFalse
   119      * Leaves in case of errors.
   119      * Leaves in case of errors.
   120      */  
   120      */  
   121     TBool FindFromUnloadListL( TInt32 aPluginUid );
   121     TBool FindInDontloadListL( TInt32 aPluginUid );
   122         
   122         
   123 private :
   123 private :
   124     /*
   124     /*
   125     * @description Creates the Blacklist database.
   125     * @description Creates the Blacklist database.
   126     * Leaves in case of errors.
   126     * Leaves in case of errors.
   130 	/*
   130 	/*
   131     * @description Creates Column set for database.
   131     * @description Creates Column set for database.
   132 	* @return CDbColSet database column set
   132 	* @return CDbColSet database column set
   133     * Leaves in case of errors.
   133     * Leaves in case of errors.
   134     */
   134     */
   135     CDbColSet* CreateColumnSetLC();
   135     CDbColSet* CreateBlacklistColumnSetLC();
   136     
   136     
   137     /*
   137     /*
   138     * @description Creates Column set for unload table.
   138     * @description Creates Column set for dontload table.
   139     * @return CDbColSet database column set
   139     * @return CDbColSet database column set
   140     * Leaves in case of errors.
   140     * Leaves in case of errors.
   141     */
   141     */
   142     CDbColSet* CreateUnloadColumnSetLC();
   142     CDbColSet* CreateDontloadColumnSetLC();
   143 private:    
   143 private:    
   144     /*
   144     /*
   145      * A handle to a file server session.Owned
   145      * A handle to a file server session.Owned
   146      */
   146      */
   147     RFs iFs;
   147     RFs iFs;