macros rename
This commit is contained in:
@@ -76,14 +76,14 @@ private:
|
||||
};
|
||||
|
||||
|
||||
BINARY_STREAM_STORE (PIResourcesStorage::__RCEntry) {
|
||||
BINARY_STREAM_WRITE(PIResourcesStorage::__RCEntry) {
|
||||
PIChunkStream cs;
|
||||
cs.add(1, v.section).add(2, v.name).add(3, v.file).add(4, v.size)
|
||||
.add(5, v.offset).add(6, v.flags).add(7, v.alias);
|
||||
s << cs.data();
|
||||
return s;
|
||||
}
|
||||
BINARY_STREAM_RESTORE(PIResourcesStorage::__RCEntry) {
|
||||
BINARY_STREAM_READ (PIResourcesStorage::__RCEntry) {
|
||||
PIByteArray ba; s >> ba;
|
||||
PIChunkStream cs(ba);
|
||||
while (!cs.atEnd()) {
|
||||
|
||||
Reference in New Issue
Block a user