aboutsummaryrefslogtreecommitdiff
path: root/brandt.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-06-20 00:36:18 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-06-20 00:36:18 +0200
commit65775f8276b082a18c99cb75c11193685bd5d822 (patch)
tree626229703ecafef6ce509584582f2e3b181f5bab /brandt.h
parent8e44164facc215a09984d83f488345f548753477 (diff)
downloadlibbrandt-65775f8276b082a18c99cb75c11193685bd5d822.tar.gz
libbrandt-65775f8276b082a18c99cb75c11193685bd5d822.zip
add 3dim array helpers
Diffstat (limited to 'brandt.h')
-rw-r--r--brandt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/brandt.h b/brandt.h
index 0e41021..a3ccc30 100644
--- a/brandt.h
+++ b/brandt.h
@@ -148,7 +148,7 @@ BRANDT_join (BRANDT_BroadcastCallback broadcast,
148 * the price of the highest loosing bid. \todo: what if bidders < m? 148 * the price of the highest loosing bid. \todo: what if bidders < m?
149 * @param[in] outcome_public If 1, the auction winner and price will be public 149 * @param[in] outcome_public If 1, the auction winner and price will be public
150 * to all participants, if 0, this information will only be revealed to the 150 * to all participants, if 0, this information will only be revealed to the
151 * winner and the seller. => \todo: Turn into AuctionMode bit flag! 151 * winner and the seller.
152 * @return A pointer, which should only be remembered and passed to 152 * @return A pointer, which should only be remembered and passed to
153 * libbrandt functions when the client needs to refer to this auction. This is a 153 * libbrandt functions when the client needs to refer to this auction. This is a
154 * black-box pointer, do NOT access/change it or the data it points to! 154 * black-box pointer, do NOT access/change it or the data it points to!
@@ -160,7 +160,7 @@ BRANDT_new (BRANDT_BroadcastCallback broadcast,
160 const void ** auction_data, 160 const void ** auction_data,
161 size_t * auction_data_len, 161 size_t * auction_data_len,
162 uint16_t num_prices, 162 uint16_t num_prices,
163 enum BRANDT_AuctionMode m, 163 uint16_t m,
164 int outcome_public); 164 int outcome_public);
165 165
166 166