aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs_api.h')
-rw-r--r--src/fs/fs_api.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/fs/fs_api.h b/src/fs/fs_api.h
index e75b75f41..7c91b5d23 100644
--- a/src/fs/fs_api.h
+++ b/src/fs/fs_api.h
@@ -205,7 +205,7 @@ struct GNUNET_FS_Uri
205 /** 205 /**
206 * Hash of the public key for the namespace. 206 * Hash of the public key for the namespace.
207 */ 207 */
208 GNUNET_HashCode namespace; 208 struct GNUNET_HashCode namespace;
209 209
210 /** 210 /**
211 * Human-readable identifier chosen for this 211 * Human-readable identifier chosen for this
@@ -333,7 +333,7 @@ struct GNUNET_FS_FileInformation
333 * over the entire file (when the indexing process is started). 333 * over the entire file (when the indexing process is started).
334 * Otherwise this field is not used. 334 * Otherwise this field is not used.
335 */ 335 */
336 GNUNET_HashCode file_id; 336 struct GNUNET_HashCode file_id;
337 337
338 /** 338 /**
339 * Size of the file (in bytes). 339 * Size of the file (in bytes).
@@ -568,7 +568,7 @@ struct GNUNET_FS_SearchResult
568 /** 568 /**
569 * Key for the search result 569 * Key for the search result
570 */ 570 */
571 GNUNET_HashCode key; 571 struct GNUNET_HashCode key;
572 572
573 /** 573 /**
574 * ID of the task that will clean up the probe_ctx should it not 574 * ID of the task that will clean up the probe_ctx should it not
@@ -730,7 +730,7 @@ GNUNET_FS_publish_main_ (void *cls,
730 * @param file_id computed hash, NULL on error 730 * @param file_id computed hash, NULL on error
731 */ 731 */
732void 732void
733GNUNET_FS_unindex_process_hash_ (void *cls, const GNUNET_HashCode * file_id); 733GNUNET_FS_unindex_process_hash_ (void *cls, const struct GNUNET_HashCode * file_id);
734 734
735 735
736/** 736/**
@@ -1384,12 +1384,12 @@ struct GNUNET_FS_UnindexContext
1384 /** 1384 /**
1385 * Current key for decrypting KBLocks from 'get_key' operation. 1385 * Current key for decrypting KBLocks from 'get_key' operation.
1386 */ 1386 */
1387 GNUNET_HashCode key; 1387 struct GNUNET_HashCode key;
1388 1388
1389 /** 1389 /**
1390 * Current query of 'get_key' operation. 1390 * Current query of 'get_key' operation.
1391 */ 1391 */
1392 GNUNET_HashCode query; 1392 struct GNUNET_HashCode query;
1393 1393
1394 /** 1394 /**
1395 * First content UID, 0 for none. 1395 * First content UID, 0 for none.
@@ -1424,7 +1424,7 @@ struct GNUNET_FS_UnindexContext
1424 /** 1424 /**
1425 * Hash of the file's contents (once computed). 1425 * Hash of the file's contents (once computed).
1426 */ 1426 */
1427 GNUNET_HashCode file_id; 1427 struct GNUNET_HashCode file_id;
1428 1428
1429 /** 1429 /**
1430 * Current operatinonal phase. 1430 * Current operatinonal phase.
@@ -1444,12 +1444,12 @@ struct SearchRequestEntry
1444 * Hash of the original keyword, also known as the 1444 * Hash of the original keyword, also known as the
1445 * key (for decrypting the KBlock). 1445 * key (for decrypting the KBlock).
1446 */ 1446 */
1447 GNUNET_HashCode key; 1447 struct GNUNET_HashCode key;
1448 1448
1449 /** 1449 /**
1450 * Hash of the public key, also known as the query. 1450 * Hash of the public key, also known as the query.
1451 */ 1451 */
1452 GNUNET_HashCode query; 1452 struct GNUNET_HashCode query;
1453 1453
1454 /** 1454 /**
1455 * Map that contains a "struct GNUNET_FS_SearchResult" for each result that 1455 * Map that contains a "struct GNUNET_FS_SearchResult" for each result that