You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,11 @@ DS3 C SDK
3
3
4
4
This project contains a C library for using the DS3 Deep Storage REST interface.
5
5
6
+
Contact Us
7
+
==========
8
+
9
+
Join us at our [Google Groups](https://groups.google.com/d/forum/spectralogicds3-sdks) forum to ask questions, or see frequently asked questions.
10
+
6
11
Windows
7
12
=======
8
13
@@ -182,7 +187,7 @@ int main (int args, char * argv[]) {
182
187
183
188
for (i = 0; i < response->num_buckets; i++) {
184
189
ds3_bucket bucket = response->buckets[i];
185
-
printf("Bucket: (%s) created on %s\n", bucket.name, bucket.creation_date);
190
+
printf("Bucket: (%s) created on %s\n", bucket.name->value, bucket.creation_date->value);
186
191
}
187
192
188
193
ds3_free_service_response(response);
@@ -319,5 +324,6 @@ int main (int args, char * argv[]) {
319
324
}
320
325
```
321
326
322
-
The structure of the code is very similar to the previous examples. Setup the client, setup the call, perform the call. Every request follows this same pattern. Things get a little more complicated with the bulk get/put cases. The following bulk put will demonstrate some of those complexities
327
+
The structure of the code is very similar to the previous examples. Setup the client, setup the call, perform the call. Every request follows this same pattern.
323
328
329
+
Additional examples are available here: [samples](sample)
0 commit comments