1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Kernel: Pass a parameter struct to rename()

This commit is contained in:
Andreas Kling 2020-01-11 10:36:54 +01:00
parent 46830a0c32
commit e380142853
4 changed files with 23 additions and 8 deletions

View file

@ -350,6 +350,11 @@ struct SC_symlink_params {
StringArgument linkpath;
};
struct SC_rename_params {
StringArgument old_path;
StringArgument new_path;
};
void initialize();
int sync();