project64/Source/Project64-core/N64System/Recompiler/SectionInfo.h

14 lines
200 B
C
Raw Normal View History

2016-01-27 09:11:59 +00:00
#pragma once
class CCodeSection;
class CCodeBlock;
struct CJumpInfo;
struct BLOCK_PARENT
{
CCodeSection * Parent;
CJumpInfo * JumpInfo;
};
typedef std::vector<BLOCK_PARENT> BLOCK_PARENT_LIST;