| 13 | ////////////////////////////////////////////////////////////////////////// |
| 14 | |
| 15 | void bpt(Beefy::BeType* t) |
| 16 | { |
| 17 | Beefy::String str; |
| 18 | if (t->IsStruct()) |
| 19 | BeModule::StructToString(str, (BeStructType*)t); |
| 20 | else |
| 21 | { |
| 22 | BeModule::ToString(str, t); |
| 23 | str += "\n"; |
| 24 | } |
| 25 | OutputDebugStrF("%s", str.c_str()); |
| 26 | |
| 27 | if (t->IsPointer()) |
| 28 | { |
| 29 | bpt(((BePointerType*)t)->mElementType); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | void bpv(Beefy::BeValue* val) |
| 34 | { |