blob: 20a8df4c222b4ea72b29538c14e9624ac47aebc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* @file llresourcedata.h
* @brief Tracking object for uploads.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LLRESOURCEDATA_H
#define LLRESOURCEDATA_H
#include "llassetstorage.h"
#include "llinventorytype.h"
struct LLResourceData
{
LLAssetInfo mAssetInfo;
LLAssetType::EType mPreferredLocation;
LLInventoryType::EType mInventoryType;
U32 mNextOwnerPerm;
void *mUserData;
};
#endif
|