Overview
| Comment: | Fix missing -1 in function list of Amiga library |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | amiga-library |
| Files: | files | file ages | folders |
| SHA3-256: |
ab7cb38e256367d51a6b5fe2f26c972e |
| User & Date: | js on 2020-06-21 11:27:56 |
| Other Links: | branch diff | manifest | tags |
Context
|
2020-06-21
| ||
| 22:15 | Merge trunk into branch "amiga-library" (check-in: 39641794dd user: js tags: amiga-library) | |
| 11:27 | Fix missing -1 in function list of Amiga library (check-in: ab7cb38e25 user: js tags: amiga-library) | |
| 03:02 | Add functions/variables for tests to Amiga library (check-in: 9937a79627 user: js tags: amiga-library) | |
Changes
Modified src/amiga-library.m from [d5cd39b196] to [80e1f6e12e].
| ︙ | ︙ | |||
61 62 63 64 65 66 67 | bool initialized; }; #ifdef OF_AMIGAOS_M68K extern uintptr_t __CTOR_LIST__[]; extern const void *_EH_FRAME_BEGINS__; extern void *_EH_FRAME_OBJECTS__; | | | | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | bool initialized; }; #ifdef OF_AMIGAOS_M68K extern uintptr_t __CTOR_LIST__[]; extern const void *_EH_FRAME_BEGINS__; extern void *_EH_FRAME_OBJECTS__; void __register_frame_info(const void *, void *); void *__deregister_frame_info(const void *); #endif extern bool glue_of_init(void); extern int glue_of_application_main(void); extern const char *glue_of_http_request_method_to_string(void); extern of_http_request_method_t glue_of_http_request_method_from_string(void); extern OFString *glue_of_http_status_code_to_string(void); |
| ︙ | ︙ | |||
662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
(CONST_APTR)glue_of_socket_address_ip_string,
(CONST_APTR)glue_of_socket_address_set_port,
(CONST_APTR)glue_of_socket_address_get_port,
(CONST_APTR)glue_of_socket_address_set_ipx_network,
(CONST_APTR)glue_of_socket_address_get_ipx_network,
(CONST_APTR)glue_of_socket_address_set_ipx_node,
(CONST_APTR)glue_of_socket_address_get_ipx_node,
#ifdef OF_MORPHOS
(CONST_APTR)FUNCARRAY_END
#endif
};
#pragma GCC diagnostic pop
static struct {
| > | 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 |
(CONST_APTR)glue_of_socket_address_ip_string,
(CONST_APTR)glue_of_socket_address_set_port,
(CONST_APTR)glue_of_socket_address_get_port,
(CONST_APTR)glue_of_socket_address_set_ipx_network,
(CONST_APTR)glue_of_socket_address_get_ipx_network,
(CONST_APTR)glue_of_socket_address_set_ipx_node,
(CONST_APTR)glue_of_socket_address_get_ipx_node,
(CONST_APTR)-1,
#ifdef OF_MORPHOS
(CONST_APTR)FUNCARRAY_END
#endif
};
#pragma GCC diagnostic pop
static struct {
|
| ︙ | ︙ |