our elf resolver has a problem with previous way of linking with FSUtils

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15875 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-01-08 16:25:28 +00:00
parent 06ac7d759d
commit 5543f13539
3 changed files with 3 additions and 8 deletions

View File

@ -15,14 +15,6 @@
#include <String.h>
#include <VolumeRoster.h>
namespace BPrivate {
extern status_t FSCopyFolder(BEntry *srcEntry, BDirectory *destDir, CopyLoopControl *loopControl,
BPoint *loc, bool makeOriginalName, Undo &undo);
} // namespace BPrivate
using namespace BPrivate;
extern void SizeAsString(off_t size, char *string);
class SourceVisitor : public BDiskDeviceVisitor

View File

@ -150,6 +150,8 @@ TrackerCopyLoopControl::TrackerCopyLoopControl(thread_id thread)
#endif
_IMPEXP_TRACKER status_t FSCopyAttributesAndStats(BNode *, BNode *);
_IMPEXP_TRACKER status_t FSCopyFolder(BEntry *srcEntry, BDirectory *destDir, CopyLoopControl *loopControl,
BPoint *loc, bool makeOriginalName, Undo &undo);
_IMPEXP_TRACKER void FSDuplicate(BObjectList<entry_ref> *srcList, BList *pointList);
_IMPEXP_TRACKER void FSMoveToFolder(BObjectList<entry_ref> *srcList, BEntry *, uint32 moveMode,
BList *pointList = NULL);

View File

@ -7,6 +7,7 @@
#ifndef _INSTALLERCOPYLOOPCONTROL_H
#define _INSTALLERCOPYLOOPCONTROL_H
#include "FSUndoRedo.h"
#include "FSUtils.h"
class InstallerWindow;