diff options
author | Jon Wolk <jwolk@lindenlab.com> | 2009-11-03 19:36:39 +0000 |
---|---|---|
committer | Jon Wolk <jwolk@lindenlab.com> | 2009-11-03 19:36:39 +0000 |
commit | 9c3595465972ba4be916e871f6b0a62cc0c13d4a (patch) | |
tree | 877661f1a3529783d079917551f28887f2cb11c3 /indra/newview/llviewermenufile.h | |
parent | 3e80fa3dbc943de9b784fedc202ba38cf238f46d (diff) |
Changed variable price upload responders to reflect server changes. I hope this gets pulled into the hg repository
Diffstat (limited to 'indra/newview/llviewermenufile.h')
-rw-r--r-- | indra/newview/llviewermenufile.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/indra/newview/llviewermenufile.h b/indra/newview/llviewermenufile.h index b51192b499..858fcd51de 100644 --- a/indra/newview/llviewermenufile.h +++ b/indra/newview/llviewermenufile.h @@ -77,20 +77,26 @@ void upload_new_resource( // used // We make a new function here to ensure that previous code is not broken -BOOL upload_new_variable_cost_resource( - const LLTransactionID &tid, +BOOL upload_new_variable_price_resource( + const LLTransactionID& tid, LLAssetType::EType type, std::string name, std::string desc, - S32 compression_info, LLAssetType::EType destination_folder_type, LLInventoryType::EType inv_type, U32 next_owner_perms, U32 group_perms, U32 everyone_perms, const std::string& display_name, - LLAssetStorage::LLStoreAssetCallback callback, - void *userdata); + const LLSD& asset_resources); +LLAssetID generate_asset_id_for_new_upload(const LLTransactionID& tid); +void increase_new_upload_stats(LLAssetType::EType asset_type); +void assign_defaults_and_show_upload_message( + LLAssetType::EType asset_type, + LLInventoryType::EType& inventory_type, + std::string& name, + const std::string& display_name, + std::string& description); #endif |