Comment update

This commit is contained in:
Uwe Seimet 2021-09-15 11:13:30 +02:00
parent 812a322e8d
commit 2a9969bf1d

View File

@ -61,11 +61,10 @@ enum PbOperation {
RESERVE = 14;
// Create an image file. The image file must not yet exist.
// PbCommand.params(0) contains the filename, PbCommand.params(1) contains the file size in bytes.
// The filename always refers to the default image folder and must not contain a slash.
// The filename is relative to the default image folder and must not contain a slash.
CREATE_IMAGE = 15;
// Delete an image file
// PbCommand.params(0) contains the filename.
// The filename always refers to the default image folder and must not contain a slash.
// Delete an image file. PbCommand.params(0) contains the filename.
// The filename is relative to the default image folder and must not contain a slash.
DELETE_IMAGE = 16;
}