/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/Box.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-11-14 17:26:42 UTC
  • mfrom: (110 simpletypesystem_trunk)
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20151114172642-qwrw5593xue49bgj
* Merged from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#include "Error.h"
6
6
#include "Func.h"
7
7
 
8
 
BEGIN_DECLS
 
8
S_BEGIN_DECLS
9
9
 
10
10
/** @file
11
11
 * @defgroup SBox SBox
109
109
s_box_new_char (schar c);
110
110
 
111
111
/**
112
 
 * @deprecated For everyone's sanity.
 
112
 * @S_DEPRECATED For everyone's sanity.
113
113
 * @see s_box_get_pointer.
114
114
 */
115
 
DEPRECATED
 
115
S_DEPRECATED
116
116
SBox *
117
117
s_box_new_wchar (wchar_t wc);
118
118
 
149
149
/**
150
150
 * @see s_box_get_pointer.
151
151
 */
152
 
DEPRECATED
 
152
S_DEPRECATED
153
153
SBox *
154
154
s_box_new_wstring (wchar_t * ws);
155
155
 
223
223
 *
224
224
 * @return the wide char stored in the box.
225
225
 */
226
 
DEPRECATED
 
226
S_DEPRECATED
227
227
wchar_t
228
228
s_box_get_wchar (SBox * self, SError * err);
229
229
 
250
250
schar *
251
251
s_box_get_string (SBox * self, SError * err);
252
252
 
253
 
DEPRECATED
 
253
S_DEPRECATED
254
254
wchar_t *
255
255
s_box_get_wstring (SBox * self, SError * err);
256
256
 
294
294
 
295
295
/** @} */
296
296
 
297
 
END_DECLS
 
297
S_END_DECLS
298
298
 
299
299
#endif