mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 10:07:12 +00:00
* Updated to latest aws-crt-ffi, updated EventLoopGroup/options init * Removed test-ci target, just use test for everything now * Added event_loop_group API to CRT/stubs * Removed headers (all generated) from format-check * Added the ability to force extension vs FFI * make test will now trigger composer run test/phpunit, and force tests with both FFI and extension * Updated builder version, removed redundant php7 test run * Removed type annotations that anger php5, limited backends on php5
22 lines
645 B
PHP
22 lines
645 B
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(): object {}
|
|
|
|
function aws_crt_event_loop_group_options_release(object $elg_options): void {}
|
|
|
|
function aws_crt_event_loop_group_options_set_max_threads(object $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 {}
|