| 63 | } |
| 64 | |
| 65 | void asCOutputBuffer::Callback(asSMessageInfo *msg) |
| 66 | { |
| 67 | message_t *msgInfo = asNEW(message_t); |
| 68 | if( msgInfo == 0 ) |
| 69 | return; |
| 70 | |
| 71 | msgInfo->section = msg->section; |
| 72 | msgInfo->row = msg->row; |
| 73 | msgInfo->col = msg->col; |
| 74 | msgInfo->type = msg->type; |
| 75 | msgInfo->msg = msg->message; |
| 76 | |
| 77 | messages.PushLast(msgInfo); |
| 78 | } |
| 79 | |
| 80 | void asCOutputBuffer::Append(asCOutputBuffer &in) |
| 81 | { |