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
918 B
C++
32 lines
918 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file CreateAppMetaMimeThread.h
|
|
CreateAppMetaMimeThread interface declaration
|
|
*/
|
|
|
|
#ifndef _CREATE_APP_META_MIME_THREAD_H
|
|
#define _CREATE_APP_META_MIME_THREAD_H
|
|
|
|
#include <mime/MimeUpdateThread.h>
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
namespace Mime {
|
|
|
|
class CreateAppMetaMimeThread : public MimeUpdateThread {
|
|
public:
|
|
CreateAppMetaMimeThread(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 // _CREATE_APP_META_MIME_THREAD_H
|