95throw"Tried to marshal in obj marked isUnmarshaling == true";
96
97//Copy the sizespec into msh_currentSize here:
98 {
99
100 }
101
102//Increase the size of buffer if needed
103EXTEND_BUFFER(msh_currentSize + sizeof(int) + sizeof(int)); // 4 bytes for the total size of field, 4 bytes for the number of elements in the array (in the case of array marshaling)
104//Mark the beginning position for this field, will write the total size of this field here later
229throw"Tried to marshal in obj marked isUnmarshaling == true";
230
231//Copy the sizespec into msh_currentSize here:
232 {
233//code for size, just dummy code because the size will be set correctly at the end of marshaling code
234
235 }
236
237//Increase the size of buffer if needed
238EXTEND_BUFFER(msh_currentSize + sizeof(int) + sizeof(int)); // 4 bytes for the total size of field, 4 bytes for the number of elements in the array (in the case of array marshaling)
239//Mark the beginning position for this field, will write the total size of this field here later