mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Initial aws_input_stream <-> php_stream implementation * Added comments about useful references * updated aws-crt-ffi to get latest aws-lc, faster builds * Fixed inconsistency between PHP5/7 versions of php_stream_from_zval
70 lines
2.6 KiB
PHP
70 lines
2.6 KiB
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
function aws_crt_last_error(): int {}
|
|
|
|
function aws_crt_error_name(int $error_code): string {}
|
|
|
|
function aws_crt_error_str(int $error_code): string {}
|
|
|
|
function aws_crt_error_debug_str(int $error_code): string {}
|
|
|
|
function aws_crt_event_loop_group_options_new(): int {}
|
|
|
|
function aws_crt_event_loop_group_options_release(int $elg_options): void {}
|
|
|
|
function aws_crt_event_loop_group_options_set_max_threads(int $elg_options, int $max_threads): void {}
|
|
|
|
function aws_crt_event_loop_group_new(object $options): object {}
|
|
|
|
function aws_crt_event_loop_group_release(object $event_loop_group): void {}
|
|
|
|
function aws_crt_input_stream_options_new(): object {}
|
|
|
|
function aws_crt_input_stream_options_release(object $options): void {}
|
|
|
|
function aws_crt_input_stream_options_set_user_data(object $options, object $user_data): void {}
|
|
|
|
function aws_crt_input_stream_new(object $options): object {}
|
|
|
|
function aws_crt_input_stream_release(int $stream): void {}
|
|
|
|
function aws_crt_input_stream_seek(int $stream, int $offset, int $basis): int {}
|
|
|
|
function aws_crt_input_stream_read(int $stream, int $length): string {}
|
|
|
|
function aws_crt_input_stream_eof(int $stream): bool {}
|
|
|
|
function aws_crt_input_stream_get_length(int $stream): int {}
|
|
|
|
function aws_crt_credentials_options_new(): object {}
|
|
|
|
function aws_crt_credentials_options_release(object $options): void {}
|
|
|
|
function aws_crt_credentials_options_set_access_key_id(object $options, string $access_key_id): void {}
|
|
|
|
function aws_crt_credentials_options_set_secret_access_key(object $options, string $secret_access_key): void {}
|
|
|
|
function aws_crt_credentials_options_set_session_token(object $options, string $session_token): void {}
|
|
|
|
function aws_crt_credentials_options_set_expiration_timepoint_seconds(object $options, int $expiration_timepoint_seconds): void {}
|
|
|
|
function aws_crt_credentials_new(object $options): object {}
|
|
|
|
function aws_crt_credentials_release(object $credentials): void {}
|
|
|
|
function aws_crt_credentials_provider_release(int $credentials): void {}
|
|
|
|
function aws_crt_credentials_provider_static_options_new(): object {}
|
|
|
|
function aws_crt_credentials_provider_static_options_release(object $options): void {}
|
|
|
|
function aws_crt_credentials_provider_static_options_set_access_key_id(object $options, string $access_key_id): void {}
|
|
|
|
function aws_crt_credentials_provider_static_options_set_secret_access_key(object $options, string $secret_access_key): void {}
|
|
|
|
function aws_crt_credentials_provider_static_options_set_session_token(object $options, string $session_token): void {}
|
|
|
|
function aws_crt_credentials_provider_static_new(object $options): object {}
|