| 635 | } |
| 636 | |
| 637 | void BlCodeView::StartSection(int sectionNum) |
| 638 | { |
| 639 | mSectStartFilePos = mWriter.GetStreamPos(); |
| 640 | BF_ASSERT((mSectStartFilePos % 4) == 0); |
| 641 | mWriter.WriteT((int32)sectionNum); |
| 642 | mWriter.WriteT((int32)0); // Temporary - size |
| 643 | } |
| 644 | |
| 645 | int BlCodeView::EndSection() |
| 646 | { |
nothing calls this directly
no test coverage detected