From b2e0239b34f5413d8952bf812dc3bb674a08b7c1 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Thu, 27 Aug 2009 07:31:35 +0000 Subject: [PATCH] Removed unused header. +alphabranch git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32735 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/build/os/storage/Alias.h | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 headers/build/os/storage/Alias.h diff --git a/headers/build/os/storage/Alias.h b/headers/build/os/storage/Alias.h deleted file mode 100644 index df5c3ce327..0000000000 --- a/headers/build/os/storage/Alias.h +++ /dev/null @@ -1,33 +0,0 @@ -/*************************************************************************** -// -// File: Alias.h -// -// Description: path->alias->path functions -// -// Copyright 1992-98, Be Incorporated, All Rights Reserved. -// -***************************************************************************/ - -#ifndef _ALIAS_H -#define _ALIAS_H - -#ifndef _BE_BUILD_H -#include -#endif -#include - -class BPath; -class BDataIO; - -_IMPEXP_BE status_t resolve_link(const char *path, BPath *result, - bool block = false); -_IMPEXP_BE status_t write_alias(const char *path, BDataIO *s, - size_t *len = NULL); -_IMPEXP_BE status_t write_alias(const char *path, void *buf, size_t *len); - -_IMPEXP_BE status_t read_alias(BDataIO *s, BPath *result, size_t *len = NULL, - bool block = false); -_IMPEXP_BE status_t read_alias(const void *buf, BPath *result, size_t *len, - bool block = false); - -#endif