15424f3d37
different "force" levels now and updates the app file info attributes for shared object files. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16123 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
909 B
C++
32 lines
909 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file UpdateMimeInfoThread.h
|
|
UpdateMimeInfoThread interface declaration
|
|
*/
|
|
|
|
#ifndef _MIME_UPDATE_MIME_INFO_THREAD_H
|
|
#define _MIME_UPDATE_MIME_INFO_THREAD_H
|
|
|
|
#include <mime/MimeUpdateThread.h>
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
namespace Mime {
|
|
|
|
class UpdateMimeInfoThread : public MimeUpdateThread {
|
|
public:
|
|
UpdateMimeInfoThread(const char *name, int32 priority,
|
|
BMessenger managerMessenger, const entry_ref *root, bool recursive,
|
|
int32 force, BMessage *replyee);
|
|
status_t DoMimeUpdate(const entry_ref *entry, bool *entryIsDir);
|
|
};
|
|
|
|
} // namespace Mime
|
|
} // namespace Storage
|
|
} // namespace BPrivate
|
|
|
|
#endif // _MIME_UPDATE_MIME_INFO_THREAD_H
|