1 /***********************************************************************************************************************************
2 Azure Storage File Write
3 ***********************************************************************************************************************************/
4 #ifndef STORAGE_AZURE_WRITE_H
5 #define STORAGE_AZURE_WRITE_H
6 
7 #include "storage/azure/storage.intern.h"
8 #include "storage/write.h"
9 
10 /***********************************************************************************************************************************
11 Constructors
12 ***********************************************************************************************************************************/
13 StorageWrite *storageWriteAzureNew(StorageAzure *storage, const String *name, uint64_t fileId, size_t blockSize);
14 
15 #endif
16