1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/shmop/shmop.stub.php
Máté Kocsis d54bc29540 Promote warnings to exceptions in ext/shmop
Closes GH-5986
2020-08-25 13:09:23 +02:00

19 lines
441 B
PHP

<?php
/** @generate-function-entries */
final class Shmop {}
function shmop_open(int $key, string $flags, int $mode, int $size): Shmop|false {}
function shmop_read(Shmop $shmid, int $start, int $count): string {}
/** @deprecated */
function shmop_close(Shmop $shmid): void {}
function shmop_size(Shmop $shmid): int {}
function shmop_write(Shmop $shmid, string $data, int $offset): int {}
function shmop_delete(Shmop $shmid): bool {}