mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
5b5bfd6be4
Closes GH-6692
20 lines
470 B
PHP
20 lines
470 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
/** @strict-properties */
|
|
final class Shmop {}
|
|
|
|
function shmop_open(int $key, string $mode, int $permissions, int $size): Shmop|false {}
|
|
|
|
function shmop_read(Shmop $shmop, int $offset, int $size): string {}
|
|
|
|
/** @deprecated */
|
|
function shmop_close(Shmop $shmop): void {}
|
|
|
|
function shmop_size(Shmop $shmop): int {}
|
|
|
|
function shmop_write(Shmop $shmop, string $data, int $offset): int {}
|
|
|
|
function shmop_delete(Shmop $shmop): bool {}
|