Browse Subversion Repository
Diff of /trunk/npl/npl.c
Parent Directory
| Revision Log
| Patch
| 177 |
return NULL; |
return NULL; |
| 178 |
} |
} |
| 179 |
|
|
| 180 |
|
// ライブラリ・モジュールに存在する型情報 |
| 181 |
|
static npl_type_t *_types[] = { |
| 182 |
|
&_npl_unset_type, |
| 183 |
|
&_npl_bool_type, |
| 184 |
|
&_npl_byte_type, |
| 185 |
|
&_npl_size_type, |
| 186 |
|
&_npl_int_type, |
| 187 |
|
&_npl_uint_type, |
| 188 |
|
&_npl_long_type, |
| 189 |
|
&_npl_ulong_type, |
| 190 |
|
&_npl_float_type, |
| 191 |
|
&_npl_wchar_type, |
| 192 |
|
&_npl_mbchar_type, |
| 193 |
|
&_npl_ws_type, |
| 194 |
|
&_npl_mbs_type, |
| 195 |
|
&_npl_type_type, |
| 196 |
|
&_npl_struct_type, |
| 197 |
|
&_npl_args_type, |
| 198 |
|
&_npl_state_event_type, |
| 199 |
|
&_npl_cmd_event_type, |
| 200 |
|
&_npl_iface_type, |
| 201 |
|
&_npl_uniface_type, |
| 202 |
|
&_npl_stream_type, |
| 203 |
|
&_npl_iptr_type, |
| 204 |
|
&_npl_istate_type, |
| 205 |
|
&_npl_object_type, |
| 206 |
|
&_npl_chunk_type, |
| 207 |
|
&_npl_def_type, |
| 208 |
|
&_npl_value_type, |
| 209 |
|
&_npl_str_type, |
| 210 |
|
&_npl_mbstr_type, |
| 211 |
|
&_npl_var_type, |
| 212 |
|
&_npl_ptr_type, |
| 213 |
|
&_npl_tuple_type, |
| 214 |
|
&_npl_buffer_type, |
| 215 |
|
&_npl_list_type, |
| 216 |
|
&_npl_dict_type, |
| 217 |
|
&_npl_func_type, |
| 218 |
|
&_npl_listener_type, |
| 219 |
|
&_npl_vstack_type, |
| 220 |
|
&_npl_state_type, |
| 221 |
|
&_npl_file_type, |
| 222 |
|
&_npl_cmd_type, |
| 223 |
|
NULL, |
| 224 |
|
}; |
| 225 |
|
|
| 226 |
|
// NPLライブラリ・モジュールの設定 |
| 227 |
|
npl_mod_t _npl_module = { |
| 228 |
|
.types = _types, |
| 229 |
|
}; |
| 230 |
|
|
| 231 |
|
npl_mod_t *npl_module = &_npl_module; |
| 232 |
|
|
|
|
Legend:
| Removed from v.112 |
|
| changed lines |
| |
Added in v.113 |
|
|
| |