Nico Huber | fdfa2e2 | 2023-11-27 16:26:03 +0100 | [diff] [blame^] | 1 | with System; |
| 2 | with Interfaces.C; |
| 3 | with Interfaces.C.Strings; |
| 4 | |
| 5 | use Interfaces.C; |
| 6 | |
| 7 | generic |
| 8 | |
| 9 | with procedure Mount (Success : out Boolean); |
| 10 | |
| 11 | with procedure Open (File_Path : String; Success : out Boolean); |
| 12 | with procedure Close; |
| 13 | |
| 14 | with procedure Read (Buf : out Buffer_Type; Success : out Boolean); |
| 15 | |
| 16 | package FS.FILO.VFS |
| 17 | with |
| 18 | SPARK_Mode => Off |
| 19 | is |
| 20 | |
| 21 | function C_Mount return int is (0); |
| 22 | |
| 23 | function C_Open (File_Path : Strings.chars_ptr) return int is (0); |
| 24 | procedure C_Close is null; |
| 25 | |
| 26 | function C_Read (Buf : System.Address; Len : int) return int is (0); |
| 27 | |
| 28 | end FS.FILO.VFS; |