1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

s3:include: move struct stream_struct to vfs.h

metze
This commit is contained in:
Stefan Metzmacher 2012-06-05 10:17:57 +02:00
parent b9500bd988
commit f88d13b16f
2 changed files with 10 additions and 10 deletions

View File

@ -167,16 +167,6 @@ typedef struct {
bool is_wild;
} name_compare_entry;
/*
* Info about an alternate data stream
*/
struct stream_struct {
off_t size;
off_t alloc_size;
char *name;
};
/* Include VFS stuff */
#include "smb_acls.h"

View File

@ -249,6 +249,16 @@ typedef struct files_struct {
} files_struct;
/*
* Info about an alternate data stream
*/
struct stream_struct {
off_t size;
off_t alloc_size;
char *name;
};
#define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \
handle = handle->next; \
}