| 867 | } |
| 868 | |
| 869 | asBYTE asCContext::GetReturnByte() |
| 870 | { |
| 871 | if( m_status != asEXECUTION_FINISHED ) return 0; |
| 872 | |
| 873 | asCDataType *dt = &m_initialFunction->returnType; |
| 874 | |
| 875 | if( dt->IsObject() || dt->IsFuncdef() || dt->IsReference() ) return 0; |
| 876 | |
| 877 | return *(asBYTE*)&m_regs.valueRegister; |
| 878 | } |
| 879 | |
| 880 | asWORD asCContext::GetReturnWord() |
| 881 | { |
no test coverage detected