mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 11:09:07 +08:00
82 lines
1.4 KiB
Modula-2
82 lines
1.4 KiB
Modula-2
|
EXPORTS
|
||
|
|
||
|
; src/cbuf.c
|
||
|
char_buf_new
|
||
|
char_buf_free
|
||
|
char_buf_append
|
||
|
|
||
|
; src/collention.c
|
||
|
collection_init
|
||
|
collection_free
|
||
|
collection_add
|
||
|
collection_remove
|
||
|
collection_count
|
||
|
collection_copy
|
||
|
|
||
|
; opack.c
|
||
|
opack_encode_from_plist
|
||
|
opack_decode_to_plist
|
||
|
|
||
|
; src/socket.c
|
||
|
socket_set_verbose
|
||
|
socket_addr_to_string
|
||
|
;socket_create_unix
|
||
|
;socket_connect_unix
|
||
|
socket_create
|
||
|
get_primary_mac_address
|
||
|
socket_connect_addr
|
||
|
socket_connect
|
||
|
socket_check_fd
|
||
|
socket_accept
|
||
|
socket_shutdown
|
||
|
socket_close
|
||
|
socket_receive
|
||
|
socket_peek
|
||
|
socket_receive_timeout
|
||
|
socket_send
|
||
|
socket_get_socket_port
|
||
|
|
||
|
; src/termcolors.c
|
||
|
term_colors_init
|
||
|
term_colors_set_enabled
|
||
|
cvfprintf
|
||
|
cfprintf
|
||
|
cprintf
|
||
|
|
||
|
; src/thread.c
|
||
|
thread_new
|
||
|
thread_detach
|
||
|
thread_free
|
||
|
thread_join
|
||
|
thread_alive
|
||
|
thread_cancel
|
||
|
mutex_init
|
||
|
mutex_destroy
|
||
|
mutex_lock
|
||
|
mutex_unlock
|
||
|
thread_once
|
||
|
cond_init
|
||
|
cond_destroy
|
||
|
cond_signal
|
||
|
cond_wait
|
||
|
cond_wait_timeout
|
||
|
|
||
|
; src/tlv.c
|
||
|
tlv_buf_new
|
||
|
tlv_buf_free
|
||
|
tlv_buf_append
|
||
|
tlv_get_data_ptr
|
||
|
tlv_data_get_uint
|
||
|
tlv_data_get_uint8
|
||
|
tlv_data_copy_data
|
||
|
|
||
|
; src/utils.c
|
||
|
string_concat
|
||
|
string_append
|
||
|
string_build_path
|
||
|
string_format_size
|
||
|
string_toupper
|
||
|
generate_uuid
|
||
|
buffer_read_from_filename
|
||
|
buffer_write_to_filename
|