2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* Project 64 - A Nintendo 64 emulator. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
2010-05-25 09:15:19 +00:00
|
|
|
class CCodeSection;
|
2010-05-30 01:54:42 +00:00
|
|
|
class CCodeBlock;
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2015-05-04 00:08:53 +00:00
|
|
|
struct BLOCK_PARENT {
|
2010-05-25 09:15:19 +00:00
|
|
|
CCodeSection * Parent;
|
2015-05-04 00:08:53 +00:00
|
|
|
CJumpInfo * JumpInfo;
|
|
|
|
};
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
typedef std::vector<BLOCK_PARENT> BLOCK_PARENT_LIST;
|