43 int $ownerActorUniqueId,
47 $result->photoName = $photoName;
48 $result->photoData = $photoData;
49 $result->bookId = $bookId;
50 $result->type = $type;
51 $result->sourceType = $sourceType;
52 $result->ownerActorUniqueId = $ownerActorUniqueId;
53 $result->newPhotoName = $newPhotoName;
59 $this->photoData = CommonTypes::getString($in);
60 $this->bookId = CommonTypes::getString($in);
61 $this->type = Byte::readUnsigned($in);
62 $this->sourceType = Byte::readUnsigned($in);
63 $this->ownerActorUniqueId = LE::readSignedLong($in);
64 $this->newPhotoName = CommonTypes::getString($in);
69 CommonTypes::putString($out, $this->photoData);
70 CommonTypes::putString($out, $this->bookId);
71 Byte::writeUnsigned($out, $this->type);
72 Byte::writeUnsigned($out, $this->sourceType);
73 LE::writeSignedLong($out, $this->ownerActorUniqueId);
74 CommonTypes::putString($out, $this->newPhotoName);