aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eet/src/lib/Eet.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libraries/eet/src/lib/Eet.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/libraries/eet/src/lib/Eet.h b/libraries/eet/src/lib/Eet.h
index 2df7fbf..7495090 100644
--- a/libraries/eet/src/lib/Eet.h
+++ b/libraries/eet/src/lib/Eet.h
@@ -6,7 +6,7 @@
6 @mainpage Eet Library Documentation 6 @mainpage Eet Library Documentation
7 7
8 @version 1.5.0 8 @version 1.5.0
9 @date 2000-2011 9 @date 2000-2012
10 10
11 Please see the @ref authors page for contact details. 11 Please see the @ref authors page for contact details.
12 12
@@ -30,7 +30,7 @@
30 Eet is extremely fast, small and simple. Eet files can be very small and 30 Eet is extremely fast, small and simple. Eet files can be very small and
31 highly compressed, making them very optimal for just sending across the 31 highly compressed, making them very optimal for just sending across the
32 internet without having to archive, compress or decompress and install them. 32 internet without having to archive, compress or decompress and install them.
33 They allow for lightning-fast random-acess reads once created, making them 33 They allow for lightning-fast random-access reads once created, making them
34 perfect for storing data that is written once (or rarely) and read many 34 perfect for storing data that is written once (or rarely) and read many
35 times, but the program does not want to have to read it all in at once. 35 times, but the program does not want to have to read it all in at once.
36 36
@@ -577,7 +577,7 @@ EAPI Eet_File_Mode
577eet_mode_get(Eet_File *ef); 577eet_mode_get(Eet_File *ef);
578 578
579/** 579/**
580 * Close an eet file handle and flush and writes pending. 580 * Close an eet file handle and flush pending writes.
581 * @param ef A valid eet file handle. 581 * @param ef A valid eet file handle.
582 * 582 *
583 * This function will flush any pending writes to disk if the eet file 583 * This function will flush any pending writes to disk if the eet file
@@ -645,6 +645,17 @@ eet_dictionary_string_check(Eet_Dictionary *ed,
645 const char *string); 645 const char *string);
646 646
647/** 647/**
648 * Return the number of strings inside a dictionary
649 * @param ed A valid dictionary handle
650 * @return the number of strings inside a dictionary
651 *
652 * @since 1.6.0
653 * @ingroup Eet_File_Group
654 */
655EAPI int
656eet_dictionary_count(const Eet_Dictionary *ed);
657
658/**
648 * Read a specified entry from an eet file and return data 659 * Read a specified entry from an eet file and return data
649 * @param ef A valid eet file handle opened for reading. 660 * @param ef A valid eet file handle opened for reading.
650 * @param name Name of the entry. eg: "/base/file_i_want". 661 * @param name Name of the entry. eg: "/base/file_i_want".